Skip to content

Commit

Permalink
wip: 連携解除時の動作
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryoga-exe committed Sep 5, 2023
1 parent cef0a0e commit 62b9dfa
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/ui/pages/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,7 @@ declare global {
size="medium"
layout="fill"
color="danger"
@click="
() => {
/* TODO */
}
"
@click="confirmRevokeProvider"
>解除</Button
>
</template>
Expand Down Expand Up @@ -317,6 +313,13 @@ const onClineRevokeProvider = (provider: string) => {
selectedProvider.value = provider;
openProviderRevocationModal();
};
const confirmRevokeProvider = async () => {
// TODO
closeProviderRevocationModal();
displayToast(`${selectedProvider.value}の連携を解除しました`, {
type: "primary",
});
};
/** Account Delete modal */
const [
Expand Down

0 comments on commit 62b9dfa

Please sign in to comment.