Skip to content

Commit

Permalink
Refactor clip page
Browse files Browse the repository at this point in the history
  • Loading branch information
futchitwo committed Jun 12, 2022
1 parent a3fd03a commit d9e5992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/pages/clip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const pagination = {
})),
};
const isOwned: boolean | null = $computed<boolean | null>(() => $i && clip && ($i?.id === clip?.userId));
const isOwned: boolean | null = $computed<boolean | null>(() => $i && clip && ($i.id === clip.userId));
watch(() => props.clipId, async () => {
clip = await os.api('clips/show', {
Expand Down

0 comments on commit d9e5992

Please sign in to comment.