Support switching timezone preference to use bot/browser timezone

This commit is contained in:
jude
2024-07-16 14:51:09 +01:00
parent 3dd2bb8d95
commit 329e356bbc
15 changed files with 194 additions and 108 deletions

View File

@@ -11,7 +11,7 @@ import { useGuild } from "../App/useGuild";
export const Settings = () => {
const guild = useGuild();
const { isSuccess: userFetched, data: userInfo } = useQuery(fetchUserInfo());
const { isSuccess: userFetched, data: userInfo } = useQuery({ ...fetchUserInfo() });
const [reminder, setReminder] = useReminder();

View File

@@ -26,3 +26,10 @@
textarea.autoresize {
resize: vertical !important;
}
div.reminderContent {
margin-top: 10px;
margin-bottom: 10px;
padding: 14px;
border-radius: 8px;
}