Skip to content

Commit be7dfdc

Browse files
committed
feat: add informational message about credential storage in SettingsDialog
1 parent 0a293a5 commit be7dfdc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/components/SettingsDialog.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
import { Input } from "@/components/ui/input";
1111
import { DialogDescription } from "@radix-ui/react-dialog";
1212
import { sendSettingChange, sendButtonClick } from "@/utils/analytics";
13+
import { Info } from "lucide-react";
1314

1415
interface SettingsDialogProps {
1516
open: boolean;
@@ -82,6 +83,12 @@ const SettingsDialog = ({ open, onOpenChange }: SettingsDialogProps) => {
8283
<div className="space-y-4 py-4">
8384
<div className="space-y-2">
8485
<h3 className="text-md font-medium">이캠퍼스 계정 관리</h3>
86+
<div className="flex items-start gap-2 rounded-md bg-muted/50 p-3">
87+
<Info className="h-4 w-4 mt-0.5 text-muted-foreground flex-shrink-0" />
88+
<p className="text-xs text-muted-foreground">
89+
사용자의 ID/PW는 외부 서버에 저장되지 않으며, 브라우저의 Storage에만 보관됩니다.
90+
</p>
91+
</div>
8592
<p className="text-sm text-muted-foreground">
8693
{hasCredentials
8794
? "저장된 계정 정보가 있습니다."

0 commit comments

Comments
 (0)