From db7578858ecf368cfce5c6f910692dcbf3d93352 Mon Sep 17 00:00:00 2001 From: Vojta Holes Date: Sun, 31 May 2026 20:45:05 +0200 Subject: [PATCH] Remove bio field from User type --- apps/react-vite/src/types/api.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/react-vite/src/types/api.ts b/apps/react-vite/src/types/api.ts index dbdf4341..fb20291b 100644 --- a/apps/react-vite/src/types/api.ts +++ b/apps/react-vite/src/types/api.ts @@ -1,7 +1,3 @@ -// let's imagine this file is autogenerated from the backend -// ideally, we want to keep these api related types in sync -// with the backend instead of manually writing them out - export type BaseEntity = { id: string; createdAt: number; @@ -23,7 +19,6 @@ export type User = Entity<{ email: string; role: 'ADMIN' | 'USER'; teamId: string; - bio: string; }>; export type AuthResponse = {