Skip to content

Commit

Permalink
Merge pull request #102 from open-source-labs/roadmap
Browse files Browse the repository at this point in the history
commented out unused dbtype
  • Loading branch information
haemie authored Jul 10, 2023
2 parents e6cf16c + b7e3408 commit 06f5618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/components/Dialog/CreateDBDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ const CreateDBDialog = ({ show, DBInfo, onClose }: CreateDBDialogProps) => {
<StyledNativeOption value={DBType.RDSMySQL}>
RDS MySQL
</StyledNativeOption>
<StyledNativeOption value={DBType.CloudDB}>
{/* <StyledNativeOption value={DBType.CloudDB}>
Cloud Database
</StyledNativeOption>
</StyledNativeOption> */}
</StyledNativeDropdown>
</DropdownContainer>

Expand All @@ -167,7 +167,7 @@ const CreateDBDialog = ({ show, DBInfo, onClose }: CreateDBDialogProps) => {
<StyledButton
variant="contained"
color="primary"
onClick={isEmpty || isError ? () => {} : handleSubmit}
onClick={isEmpty || isError ? () => { } : handleSubmit}
>
Confirm
</StyledButton>
Expand Down

0 comments on commit 06f5618

Please sign in to comment.