Skip to content

Commit 4b2fb65

Browse files
authored
Fix cancel button for enable replication modal (supabase#40475)
1 parent ef2027f commit 4b2fb65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/studio/components/interfaces/Database/ETL/EnableReplicationModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const EnableReplicationModal = () => {
6565
</Admonition>
6666
</DialogSection>
6767
<DialogFooter>
68-
<Button type="default" disabled={creatingTenantSource}>
68+
<Button type="default" disabled={creatingTenantSource} onClick={() => setOpen(false)}>
6969
Cancel
7070
</Button>
7171
<Button type="primary" loading={creatingTenantSource} onClick={onEnableReplication}>

0 commit comments

Comments
 (0)