format using prettier

This commit is contained in:
Minh Vo
2025-12-30 10:27:10 -05:00
parent ce494e182a
commit b92ab62f1d
7 changed files with 144 additions and 137 deletions

View File

@@ -1,6 +1,5 @@
import type { InputValue } from '@portabletext/svelte';
export type EventPost = {
id: string;
name: string;
@@ -19,18 +18,18 @@ export enum EventCategory {
PROFESSIONAL = 'professional',
SOCIAL = 'social',
TECHNICAL = 'technical'
};
}
export type LinkType = {
title: string;
kind: EventLinkKind;
url: string;
title: string;
kind: EventLinkKind;
url: string;
};
export enum EventLinkKind {
PAYMENT = 'payment',
REGISTRATION = 'registration',
GENERAL = 'general'
};
}
export type FAQ = {
question: string;