[WiP] Upload ava

This commit is contained in:
ilya-bkv 2022-12-03 11:21:37 +03:00
parent 0d3a7e5c64
commit 455e72a2dc
2 changed files with 0 additions and 5 deletions

View File

@ -22,7 +22,6 @@ const useProfileForm = () => {
const [form, setForm] = createStore<ProfileInput>({
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
})

View File

@ -23,7 +23,6 @@ export type AuthResult = {
export type Author = {
bio?: Maybe<Scalars['String']>
about?: Maybe<Scalars['String']>
caption?: Maybe<Scalars['String']>
id: Scalars['Int']
lastSeen?: Maybe<Scalars['DateTime']>
@ -334,8 +333,6 @@ export type Permission = {
export type ProfileInput = {
about?: InputMaybe<Scalars['String']>
bio?: InputMaybe<Scalars['String']>
slug?: InputMaybe<Scalars['String']>
about?: InputMaybe<Scalars['String']>
links?: InputMaybe<Array<InputMaybe<Scalars['String']>>>
name?: InputMaybe<Scalars['String']>
slug?: InputMaybe<Scalars['String']>