[WiP] Upload ava
This commit is contained in:
parent
0d3a7e5c64
commit
455e72a2dc
|
@ -22,7 +22,6 @@ const useProfileForm = () => {
|
||||||
const [form, setForm] = createStore<ProfileInput>({
|
const [form, setForm] = createStore<ProfileInput>({
|
||||||
name: '',
|
name: '',
|
||||||
bio: '',
|
bio: '',
|
||||||
about: '',
|
|
||||||
slug: '',
|
slug: '',
|
||||||
userpic: '',
|
userpic: '',
|
||||||
links: []
|
links: []
|
||||||
|
@ -37,7 +36,6 @@ const useProfileForm = () => {
|
||||||
name: currentAuthor()?.name,
|
name: currentAuthor()?.name,
|
||||||
slug: currentAuthor()?.name,
|
slug: currentAuthor()?.name,
|
||||||
bio: currentAuthor()?.bio,
|
bio: currentAuthor()?.bio,
|
||||||
about: currentAuthor()?.about,
|
|
||||||
userpic: currentAuthor()?.userpic,
|
userpic: currentAuthor()?.userpic,
|
||||||
links: currentAuthor()?.links
|
links: currentAuthor()?.links
|
||||||
})
|
})
|
||||||
|
|
|
@ -23,7 +23,6 @@ export type AuthResult = {
|
||||||
|
|
||||||
export type Author = {
|
export type Author = {
|
||||||
bio?: Maybe<Scalars['String']>
|
bio?: Maybe<Scalars['String']>
|
||||||
about?: Maybe<Scalars['String']>
|
|
||||||
caption?: Maybe<Scalars['String']>
|
caption?: Maybe<Scalars['String']>
|
||||||
id: Scalars['Int']
|
id: Scalars['Int']
|
||||||
lastSeen?: Maybe<Scalars['DateTime']>
|
lastSeen?: Maybe<Scalars['DateTime']>
|
||||||
|
@ -334,8 +333,6 @@ export type Permission = {
|
||||||
export type ProfileInput = {
|
export type ProfileInput = {
|
||||||
about?: InputMaybe<Scalars['String']>
|
about?: InputMaybe<Scalars['String']>
|
||||||
bio?: InputMaybe<Scalars['String']>
|
bio?: InputMaybe<Scalars['String']>
|
||||||
slug?: InputMaybe<Scalars['String']>
|
|
||||||
about?: InputMaybe<Scalars['String']>
|
|
||||||
links?: InputMaybe<Array<InputMaybe<Scalars['String']>>>
|
links?: InputMaybe<Array<InputMaybe<Scalars['String']>>>
|
||||||
name?: InputMaybe<Scalars['String']>
|
name?: InputMaybe<Scalars['String']>
|
||||||
slug?: InputMaybe<Scalars['String']>
|
slug?: InputMaybe<Scalars['String']>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user