Merged PR 482: ビルドエラー修正

## 概要
[Task2839: ビルドエラー修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2839)

ビルドエラーを修正しました。

## レビューポイント
なし

## UIの変更
なし

## 動作確認状況
ローカルでビルドが通ることを確認。

## 補足
なし
This commit is contained in:
oura.a 2023-10-11 08:44:07 +00:00
parent f4293213be
commit 5b0058b707
2 changed files with 10 additions and 3 deletions

View File

@ -442,11 +442,17 @@ export interface CreateAccountRequest {
*/
'adminPassword': string;
/**
*
* (EULA)
* @type {string}
* @memberof CreateAccountRequest
*/
'acceptedTermsVersion': string;
'acceptedEulaVersion': string;
/**
* (DPA)
* @type {string}
* @memberof CreateAccountRequest
*/
'acceptedDpaVersion': string;
/**
* reCAPTCHA Token
* @type {string}

View File

@ -37,7 +37,8 @@ const SignupConfirm: React.FC = (): JSX.Element => {
adminName,
adminMail,
adminPassword,
acceptedTermsVersion: "",
acceptedEulaVersion: "",
acceptedDpaVersion: "",
token: "",
})
);