Session api token validation
This commit is contained in:
@@ -7,13 +7,13 @@ type FollowStatus = 'following' | 'requested' | 'none'
|
||||
|
||||
const props = defineProps<{
|
||||
user: User
|
||||
followStatus: FollowStatus
|
||||
followStatus: string
|
||||
}>()
|
||||
|
||||
const snackbar = ref(false)
|
||||
const snackbarMessage = ref('')
|
||||
|
||||
const status = ref<FollowStatus>(props.followStatus)
|
||||
const status = ref<FollowStatus>(props.followStatus as FollowStatus)
|
||||
const processing = ref(false)
|
||||
|
||||
const auth = usePage<SharedProps>().props.auth
|
||||
|
||||
Reference in New Issue
Block a user