minor fixes
This commit is contained in:
parent
987dae9b2d
commit
db0ce2f6f7
@ -91,12 +91,12 @@ function Header({ children }) {
|
||||
{
|
||||
title: t('Header:About'),
|
||||
icon: 'info',
|
||||
onClick: () => showAboutModal(),
|
||||
onClick: showAboutModal,
|
||||
},
|
||||
{
|
||||
title: t('Header:Preferences'),
|
||||
icon: 'settings',
|
||||
onClick: () => showPreferencesModal(),
|
||||
onClick: showPreferencesModal,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@ -45,11 +45,11 @@ const PreferencesDropdown = () => {
|
||||
</>
|
||||
}
|
||||
list={[
|
||||
{ title: 'About', icon: 'info', onClick: () => showAboutModal() },
|
||||
{ title: 'About', icon: 'info', onClick: showAboutModal },
|
||||
{
|
||||
title: 'Preferences',
|
||||
icon: 'settings',
|
||||
onClick: () => showPreferencesModal(),
|
||||
onClick: showPreferencesModal,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user