보안 점검 및 대시보드 문구 수정
This commit is contained in:
@@ -162,23 +162,21 @@ export function KisAuthForm() {
|
||||
)}
|
||||
</Button>
|
||||
|
||||
{isKisVerified && (
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={handleRevoke}
|
||||
disabled={isRevoking}
|
||||
className="h-9 rounded-lg border-zinc-200 bg-white px-4 text-xs text-zinc-600 hover:bg-zinc-50 hover:text-zinc-900 dark:border-zinc-700 dark:bg-zinc-800 dark:text-zinc-400 dark:hover:text-zinc-200"
|
||||
>
|
||||
{isRevoking ? (
|
||||
"해제 중"
|
||||
) : (
|
||||
<span className="flex items-center gap-1.5">
|
||||
<Unlink2 className="h-3.5 w-3.5" />
|
||||
연결 해제
|
||||
</span>
|
||||
)}
|
||||
</Button>
|
||||
)}
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={handleRevoke}
|
||||
disabled={isRevoking || !verifiedCredentials}
|
||||
className="h-9 rounded-lg border-zinc-200 bg-white px-4 text-xs text-zinc-600 hover:bg-zinc-50 hover:text-zinc-900 disabled:cursor-not-allowed disabled:opacity-50 dark:border-zinc-700 dark:bg-zinc-800 dark:text-zinc-400 dark:hover:text-zinc-200"
|
||||
>
|
||||
{isRevoking ? (
|
||||
"해제 중"
|
||||
) : (
|
||||
<span className="flex items-center gap-1.5">
|
||||
<Unlink2 className="h-3.5 w-3.5" />
|
||||
연결 해제(토큰 폐기)
|
||||
</span>
|
||||
)}
|
||||
</Button>
|
||||
</div>
|
||||
),
|
||||
status: (
|
||||
|
||||
Reference in New Issue
Block a user