From e45683ed65f85ac719818fab756dc8edcc1444b9 Mon Sep 17 00:00:00 2001 From: Whidix Date: Mon, 22 Jun 2026 20:01:24 +0200 Subject: [PATCH] fix: remove 'Smile' type from DevilFruitType definition --- src/lib/server/db/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/server/db/schema.ts b/src/lib/server/db/schema.ts index 0278b12..79957d2 100644 --- a/src/lib/server/db/schema.ts +++ b/src/lib/server/db/schema.ts @@ -3,7 +3,7 @@ import { user } from './auth.schema'; import type { InferSelectModel } from 'drizzle-orm'; // Define devil fruit types -export type DevilFruitType = 'Paramecia' | 'Zoan' | 'Logia' | 'Smile' | 'Unknown'; +export type DevilFruitType = 'Paramecia' | 'Zoan' | 'Logia' | 'Unknown'; export type Status = 'Alive' | 'Dead' | 'Unknown'; export type FriendshipStatus = 'pending' | 'accepted' | 'declined';