mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-19 19:37:01 -04:00
Fix Line Formatting
This commit is contained in:
parent
c9ec915dcc
commit
ea9fa09564
1 changed files with 1 additions and 3 deletions
|
@ -20,16 +20,14 @@ import { Message, User } from "discord-types/general";
|
||||||
import { authModal, deleteTimezone, getTimezone, setUserDatabaseTimezone } from "./database";
|
import { authModal, deleteTimezone, getTimezone, setUserDatabaseTimezone } from "./database";
|
||||||
import { SetTimezoneModal } from "./TimezoneModal";
|
import { SetTimezoneModal } from "./TimezoneModal";
|
||||||
|
|
||||||
export const DATASTORE_KEY = "vencord-timezones";
|
|
||||||
|
|
||||||
type CacheEntry = {
|
type CacheEntry = {
|
||||||
value: string | null;
|
value: string | null;
|
||||||
expires: number;
|
expires: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
export let databaseTimezones: Record<string, CacheEntry> = {};
|
export let databaseTimezones: Record<string, CacheEntry> = {};
|
||||||
|
|
||||||
export let timezones: Record<string, string | null> = {};
|
export let timezones: Record<string, string | null> = {};
|
||||||
|
export const DATASTORE_KEY = "vencord-timezones";
|
||||||
|
|
||||||
const classes = findByPropsLazy("timestamp", "compact", "contentOnly");
|
const classes = findByPropsLazy("timestamp", "compact", "contentOnly");
|
||||||
const locale = findByPropsLazy("getLocale");
|
const locale = findByPropsLazy("getLocale");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue