Skip to content

Commit

Permalink
reverted authUrl type in IrdomAuthButton to string | null
Browse files Browse the repository at this point in the history
  • Loading branch information
BatuevIO committed Sep 14, 2024
1 parent 4c2b479 commit 8430f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/IrdomAuthButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface Props {
}
const props = withDefaults(defineProps<Props>(), { unlink: false });
const authUrl = ref<string>();
const authUrl = ref<string | null>(null);
onMounted(async () => {
const { data } = await apiClient.GET(`/auth/${props.button.method}/auth_url`);
Expand Down

0 comments on commit 8430f1c

Please sign in to comment.