fix(front): correct actor type and copy button for full username in profile
This commit is contained in:
parent
a488eab644
commit
e883599701
|
@ -1200,7 +1200,8 @@
|
|||
"copy": "Copy"
|
||||
},
|
||||
"message": {
|
||||
"success": "Text copied to clipboard!"
|
||||
"success": "Text copied to clipboard!",
|
||||
"fail": "Failed to copy text to clipboard, maybe your browser doesn't support this feature."
|
||||
}
|
||||
},
|
||||
"DangerousButton": {
|
||||
|
|
|
@ -46,7 +46,7 @@ export type ContentCategory = 'podcast' | 'music'
|
|||
|
||||
// Use backend-defined schema types
|
||||
|
||||
export type Actor = components['schemas']['APIActor']
|
||||
export type Actor = components['schemas']['FullActor']
|
||||
export type Activity = components['schemas']['Activity']
|
||||
export type Album = components['schemas']['Album']
|
||||
export type ArtistCredit = components['schemas']['ArtistCredit']
|
||||
|
|
Loading…
Reference in New Issue