Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit b4914c5

Browse files
committed
use Bart Simpson instead of John Doe
1 parent 734f0c1 commit b4914c5

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/frontend/components/layout/TopNavbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const TopNavbar: React.FC = () => {
7171
{
7272
id: '1',
7373
title: 'Document shared',
74-
message: 'Jane Doe shared "Project Budget.pdf" with you',
74+
message: 'Jane Simpson shared "Project Budget.pdf" with you',
7575
timestamp: new Date(Date.now() - 30 * 60 * 1000), // 30 minutes ago
7676
isRead: false,
7777
type: 'share'

src/frontend/components/modals/ScreenLockModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const ScreenLockModal: FC = () => {
7676
};
7777

7878
// Get user's email (in a real app, this would come from user data)
79-
const userEmail = 'john.doe@example.com';
79+
const userEmail = 'bart.simpson@example.com';
8080
const obscuredEmail = getObscuredEmail(userEmail);
8181

8282
// Handle sending recovery email

src/frontend/components/modals/SettingsModal.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ export default function SettingsModal({ isOpen, onClose, activeTab = "account" }
321321
const showNotificationExample = () => {
322322
if (notificationsEnabled) {
323323
toast("New Document Added", {
324-
description: "John Doe shared a document with you: 'Project Proposal.pdf'",
324+
description: "Bart Simpson shared a document with you: 'Project Proposal.pdf'",
325325
action: {
326326
label: "View",
327327
onClick: () => {
@@ -625,7 +625,7 @@ export default function SettingsModal({ isOpen, onClose, activeTab = "account" }
625625
<img src="https://github.com/shadcn.png" alt="User Avatar" />
626626
</Avatar>
627627
<div className="space-y-1">
628-
<h2 className="text-xl font-semibold">John Doe</h2>
628+
<h2 className="text-xl font-semibold">Bart Simpson</h2>
629629
<Badge variant="outline" className="bg-blue-50 text-blue-700 border-blue-200 cursor-pointer hover:bg-blue-100 px-2 py-1">
630630
@johndoe
631631
</Badge>
@@ -648,7 +648,7 @@ export default function SettingsModal({ isOpen, onClose, activeTab = "account" }
648648
<ActionItem
649649
icon={<AtSignIcon size={18} />}
650650
label="Email Address"
651-
description="john.doe@example.com"
651+
description="bart.simpson@example.com"
652652
actionLabel="Change"
653653
onClick={() => {}}
654654
/>
@@ -1119,7 +1119,7 @@ export default function SettingsModal({ isOpen, onClose, activeTab = "account" }
11191119
<ExportDataModal
11201120
isOpen={showExportModal}
11211121
onClose={() => setShowExportModal(false)}
1122-
email="john.doe@example.com"
1122+
email="bart.simpson@example.com"
11231123
onExportComplete={handleExportComplete}
11241124
notificationsEnabled={notificationsEnabled}
11251125
playSound={playSound}

src/frontend/components/pages/ForgotPassword.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default function ForgotPassword() {
8585
name="email"
8686
label="Email"
8787
type="email"
88-
placeholder="john.doe@example.com"
88+
placeholder="bart.simpson@example.com"
8989
autoComplete="email"
9090
required
9191
/>

src/frontend/components/pages/Register.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ export default function Register() {
9191
form={form}
9292
name="firstName"
9393
label="First Name"
94-
placeholder="John"
94+
placeholder="Bart"
9595
required
9696
/>
9797
<FormInput
9898
form={form}
9999
name="lastName"
100100
label="Last Name"
101-
placeholder="Doe"
101+
placeholder="Simpson"
102102
required
103103
/>
104104
</div>
@@ -108,7 +108,7 @@ export default function Register() {
108108
name="email"
109109
label="Email"
110110
type="email"
111-
placeholder="john.doe@example.com"
111+
placeholder="bart.simpson@example.com"
112112
autoComplete="email"
113113
required
114114
/>

0 commit comments

Comments
 (0)