fix: remove 'Smile' type from DevilFruitType definition
Build Docker Image / build (push) Has been cancelled

This commit is contained in:
2026-06-22 20:01:24 +02:00
parent be7d3bc983
commit e45683ed65
+1 -1
View File
@@ -3,7 +3,7 @@ import { user } from './auth.schema';
import type { InferSelectModel } from 'drizzle-orm'; import type { InferSelectModel } from 'drizzle-orm';
// Define devil fruit types // 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 Status = 'Alive' | 'Dead' | 'Unknown';
export type FriendshipStatus = 'pending' | 'accepted' | 'declined'; export type FriendshipStatus = 'pending' | 'accepted' | 'declined';