Skip to content

Commit

Permalink
fix default setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj authored Dec 27, 2023
1 parent 7170b84 commit 407b377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/mirrors/create/helpers/cdc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const cdcSettings: MirrorSetting[] = [
stateHandler: (value, setter) =>
setter((curr: CDCConfig) => ({
...curr,
doInitialCopy: (value as boolean) || true,
doInitialCopy: (value as boolean) ?? true,
})),
tips: 'Specify if you want initial load to happen for your tables.',
type: 'switch',
Expand Down

0 comments on commit 407b377

Please sign in to comment.