[WiP] Upload ava
This commit is contained in:
parent
0d3a7e5c64
commit
455e72a2dc
|
@ -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
|
||||
})
|
||||
|
|
|
@ -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']>
|
||||
|
|
Loading…
Reference in New Issue
Block a user