Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import { OAuthAccountsSection } from "@/components/settings/OAuthAccountsSection
import log from "@/lib/logger";
import { authService } from "@/services/authService";
import { getPasswordChecks, getStrengthLevel } from "@/lib/utils";
import { copyToClipboard } from "@/lib/clipboard";
Comment thread
WMC001 marked this conversation as resolved.
import { useConfirmModal } from "@/hooks/useConfirmModal";
import {
getUserTokens,
Expand Down Expand Up @@ -199,7 +200,7 @@ export default function UserProfileComp() {
const handleCopyAk = async () => {
if (akInfo) {
try {
Comment thread
WMC001 marked this conversation as resolved.
await navigator.clipboard.writeText(akInfo);
await copyToClipboard(akInfo);
antdMessage.success(
t("profile.copyAkSuccess") || "Access key copied to clipboard"
);
Expand Down
Loading