Skip to content

Commit 9219a1a

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/npm_and_yarn/markdown-to-jsx-9.8.0
2 parents 6f4ce53 + 9d37906 commit 9219a1a

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/components/modals/ConfigureGitModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export default function ConfigureGitModal({ open, onClose }: ConfigureGitModalPr
271271
repoUrl: hasGitConfiguration ? gitSettings?.repoUrl || '' : '',
272272
branch: hasGitConfiguration ? gitSettings?.branch || '' : '',
273273
username: hasGitConfiguration ? gitSettings?.username || '' : '',
274-
password: hasGitConfiguration ? gitSettings?.password || '' : '',
274+
password: '',
275275
email: hasGitConfiguration ? gitSettings?.email || '' : '',
276276
})
277277

src/redux/otomiApi.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4255,7 +4255,6 @@ export type GetSettingsInfoApiResponse = /** status 200 The request is successfu
42554255
repoUrl?: string
42564256
branch?: string
42574257
username?: string
4258-
password?: string
42594258
email?: string
42604259
}
42614260
}
@@ -4863,7 +4862,6 @@ export type EditAppApiArg = {
48634862
export type GetGitSettingsApiResponse = /** status 200 Current Git settings */ {
48644863
repoUrl: string
48654864
username?: string
4866-
password: string
48674865
email: string
48684866
branch: string
48694867
}

0 commit comments

Comments
 (0)