Changed default redirects in risk management pages to point to the new risk pools section. Removed unused risk lock log components and streamlined the admin reports page with a loading state for better user experience. Added a new DocFigure component for improved documentation visuals and updated localization files to include new figure descriptions.
24 lines
387 B
TypeScript
24 lines
387 B
TypeScript
export const ADMIN_I18N_NAMESPACES = [
|
|
"common",
|
|
"auth",
|
|
"dashboard",
|
|
"audit",
|
|
"draws",
|
|
"settlement",
|
|
"settlementCenter",
|
|
"risk",
|
|
"jackpot",
|
|
"players",
|
|
"tickets",
|
|
"reconcile",
|
|
"reports",
|
|
"wallet",
|
|
"adminUsers",
|
|
"agents",
|
|
"config",
|
|
"integrationDocs",
|
|
"adminDocs",
|
|
] as const;
|
|
|
|
export type AdminI18nNamespace = (typeof ADMIN_I18N_NAMESPACES)[number];
|