aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/settings
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-07-11 01:01:48 +0800
committercrupest <crupest@outlook.com>2023-07-11 01:01:48 +0800
commitd46b1aed549938c9f5e3e658b4098e71b5e2acf7 (patch)
tree0deae7f40692345c8e4b1473cdddbd13e0e5586d /FrontEnd/src/views/settings
parentd9b83e4e8215168dda03b04168d7e30ce5fe779f (diff)
downloadtimeline-d46b1aed549938c9f5e3e658b4098e71b5e2acf7.tar.gz
timeline-d46b1aed549938c9f5e3e658b4098e71b5e2acf7.tar.bz2
timeline-d46b1aed549938c9f5e3e658b4098e71b5e2acf7.zip
Lint error, get away!
Diffstat (limited to 'FrontEnd/src/views/settings')
-rw-r--r--FrontEnd/src/views/settings/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/FrontEnd/src/views/settings/index.tsx b/FrontEnd/src/views/settings/index.tsx
index 79c816a0..ccaf86d2 100644
--- a/FrontEnd/src/views/settings/index.tsx
+++ b/FrontEnd/src/views/settings/index.tsx
@@ -71,7 +71,7 @@ function SettingItemContainer({
"row settings-item mx-0",
first && "first",
onClick && "clickable",
- className
+ className,
)}
onClick={onClick}
>
@@ -134,7 +134,7 @@ const SelectSettingsItem: React.FC<SelectSettingItemProps> = ({
);
};
-const SettingsPage: React.FC = (_) => {
+const SettingsPage: React.FC = () => {
const { i18n } = useTranslation();
const user = useUser();
const navigate = useNavigate();
@@ -149,7 +149,7 @@ const SettingsPage: React.FC = (_) => {
>(null);
const [registerCode, setRegisterCode] = useState<undefined | null | string>(
- undefined
+ undefined,
);
const [bookmarkVisibility, setBookmarkVisibility] =