diff --git a/client/src/components/Admin/AuditLogPanel.test.tsx b/client/src/components/Admin/AuditLogPanel.test.tsx
index 4d076f0e..a6e73507 100644
--- a/client/src/components/Admin/AuditLogPanel.test.tsx
+++ b/client/src/components/Admin/AuditLogPanel.test.tsx
@@ -47,7 +47,7 @@ describe('AuditLogPanel', () => {
}),
);
render();
- expect(screen.getByText('Loading...')).toBeInTheDocument();
+ expect(screen.getByText('Loading…')).toBeInTheDocument();
expect(document.querySelector('table')).not.toBeInTheDocument();
});
diff --git a/client/src/components/Admin/GitHubPanel.test.tsx b/client/src/components/Admin/GitHubPanel.test.tsx
index 617bdd88..429bd042 100644
--- a/client/src/components/Admin/GitHubPanel.test.tsx
+++ b/client/src/components/Admin/GitHubPanel.test.tsx
@@ -55,7 +55,7 @@ describe('GitHubPanel', () => {
it('FE-ADMIN-GH-002: all support links have correct href and target=_blank', async () => {
render();
- await waitFor(() => expect(screen.queryByText('Loading...')).not.toBeInTheDocument());
+ await waitFor(() => expect(screen.queryByText('Loading…')).not.toBeInTheDocument());
const kofi = screen.getByText('Ko-fi').closest('a')!;
expect(kofi).toHaveAttribute('href', 'https://ko-fi.com/mauriceboe');
@@ -272,7 +272,7 @@ describe('GitHubPanel', () => {
it('FE-ADMIN-GH-016: support card hover effects fire without error', async () => {
render();
- await waitFor(() => expect(screen.queryByText('Loading...')).not.toBeInTheDocument());
+ await waitFor(() => expect(screen.queryByText('Loading…')).not.toBeInTheDocument());
const kofiLink = screen.getByText('Ko-fi').closest('a')!;
fireEvent.mouseEnter(kofiLink);
diff --git a/client/src/components/Planner/DayDetailPanel.tsx b/client/src/components/Planner/DayDetailPanel.tsx
index 827ae454..c1a4acc3 100644
--- a/client/src/components/Planner/DayDetailPanel.tsx
+++ b/client/src/components/Planner/DayDetailPanel.tsx
@@ -189,7 +189,7 @@ export default function DayDetailPanel({ day, days, places, categories = [], tri
{!collapsed && formattedDate &&
{formattedDate}
}
-