mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 06:11:45 +00:00
fix(costs): rework the cost panel UX wise and apply prettier on the shared package
This commit is contained in:
@@ -55,12 +55,10 @@ export const EMAIL_I18N: Record<string, EmailStrings> = Object.fromEntries(
|
||||
Object.entries(LOCALES).map(([k, v]) => [k, v.email]),
|
||||
);
|
||||
|
||||
export const EVENT_TEXTS: Record<
|
||||
string,
|
||||
Record<NotificationEventKey, EventTextFn>
|
||||
> = Object.fromEntries(Object.entries(LOCALES).map(([k, v]) => [k, v.events]));
|
||||
export const EVENT_TEXTS: Record<string, Record<NotificationEventKey, EventTextFn>> = Object.fromEntries(
|
||||
Object.entries(LOCALES).map(([k, v]) => [k, v.events]),
|
||||
);
|
||||
|
||||
export const PASSWORD_RESET_I18N: Record<string, PasswordResetStrings> =
|
||||
Object.fromEntries(
|
||||
Object.entries(LOCALES).map(([k, v]) => [k, v.passwordReset]),
|
||||
);
|
||||
export const PASSWORD_RESET_I18N: Record<string, PasswordResetStrings> = Object.fromEntries(
|
||||
Object.entries(LOCALES).map(([k, v]) => [k, v.passwordReset]),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user