From 455e72a2dcd8e3b5019f76d13a1d4a6b1880e5c9 Mon Sep 17 00:00:00 2001 From: ilya-bkv Date: Sat, 3 Dec 2022 11:21:37 +0300 Subject: [PATCH] [WiP] Upload ava --- src/context/profile.tsx | 2 -- src/graphql/types.gen.ts | 3 --- 2 files changed, 5 deletions(-) diff --git a/src/context/profile.tsx b/src/context/profile.tsx index 92a6cdd8..53b13d6e 100644 --- a/src/context/profile.tsx +++ b/src/context/profile.tsx @@ -22,7 +22,6 @@ const useProfileForm = () => { const [form, setForm] = createStore({ name: '', bio: '', - about: '', slug: '', userpic: '', links: [] @@ -37,7 +36,6 @@ const useProfileForm = () => { name: currentAuthor()?.name, slug: currentAuthor()?.name, bio: currentAuthor()?.bio, - about: currentAuthor()?.about, userpic: currentAuthor()?.userpic, links: currentAuthor()?.links }) diff --git a/src/graphql/types.gen.ts b/src/graphql/types.gen.ts index 9cd49925..5dd514cf 100644 --- a/src/graphql/types.gen.ts +++ b/src/graphql/types.gen.ts @@ -23,7 +23,6 @@ export type AuthResult = { export type Author = { bio?: Maybe - about?: Maybe caption?: Maybe id: Scalars['Int'] lastSeen?: Maybe @@ -334,8 +333,6 @@ export type Permission = { export type ProfileInput = { about?: InputMaybe bio?: InputMaybe - slug?: InputMaybe - about?: InputMaybe links?: InputMaybe>> name?: InputMaybe slug?: InputMaybe