Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
absorbb committed Nov 14, 2024
1 parent e0ee2e0 commit 7ad83e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const SettingsTab: React.FC<{ profileBuilder: ProfileBuilderData; dispatch: Reac
documentation: <>Select the destination database where the profiles will be stored</>,
component: (
<DestinationSelector
selected={settings.destinationId || destinations[0].id}
selected={settings.destinationId || destinations[0]?.id}
items={destinations}
enabled={true}
onSelect={d => dispatch({ type: "settings", value: { ...settings, destinationId: d } })}
Expand Down

0 comments on commit 7ad83e6

Please sign in to comment.