forked from bai/curriculum-project-hub
style(admin-web): apply Prettier formatting
Run `prettier --write .` across all source files. Changes are purely formatting: trailing commas, line wrapping at 120 chars, import reordering, and CSS whitespace. No logic changes. Verified with `prettier --check .` and `svelte-check` (0 errors, 0 warnings).
This commit is contained in:
@@ -1,9 +1,4 @@
|
||||
import {
|
||||
ORG_ROLE_LABELS,
|
||||
PERMISSION_ROLE_LABELS,
|
||||
type OrgRole,
|
||||
type PermissionRole
|
||||
} from './constants';
|
||||
import { ORG_ROLE_LABELS, PERMISSION_ROLE_LABELS, type OrgRole, type PermissionRole } from './constants';
|
||||
|
||||
export function fmtDate(iso: string): string {
|
||||
if (!iso) return '—';
|
||||
@@ -14,7 +9,7 @@ export function fmtDate(iso: string): string {
|
||||
month: 'short',
|
||||
day: '2-digit',
|
||||
hour: '2-digit',
|
||||
minute: '2-digit'
|
||||
minute: '2-digit',
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user