Skip to content

Commit

Permalink
fix: remove extra space for settings (#2557)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud authored Apr 17, 2024
1 parent 1e373d9 commit 2198d5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const SettingsList = observer<Props>(function SettingsList({ treeData, so
{list.map(({ group, settings }) => (
<SettingsGroup key={group.id} group={group} source={source} settings={settings} />
))}
<div style={{ height: 'calc(100% - 100px)' }} />
<div style={{ height: 'calc(100% - 100px)' }} hidden />
</Container>
);
});

0 comments on commit 2198d5f

Please sign in to comment.