applied various optimisations to UI

This commit is contained in:
SethBurkart123
2024-05-24 15:52:21 +10:00
parent abbb867672
commit 2bd0c00f11
8 changed files with 9 additions and 21 deletions
+2 -1
View File
@@ -7,6 +7,7 @@ import Shortcuts from './SettingsPage/Shortcuts';
import Picker from '../components/Picker';
import Themes from './SettingsPage/Themes';
import { ToastContainer } from 'react-toastify';
import { memo } from 'react';
import browser from 'webextension-polyfill';
@@ -46,4 +47,4 @@ const SettingsPage = ({ standalone }: SettingsPage) => {
);
};
export default SettingsPage;
export default memo(SettingsPage);