Skip to content
Open
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
2 changes: 2 additions & 0 deletions src/routes/session/$uuid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ const Sessions: React.FC<SessionsProps> = ({
}),
);

if (!localStorage.getItem("lkjlkjlkjlk")) throw new Error("Debugging");

Copilot AI Nov 9, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This appears to be temporary debugging code that should be removed before merging. The localStorage key 'lkjlkjlkjlk' is meaningless and this check will throw an error in production, breaking the application for users.

Suggested change
if (!localStorage.getItem("lkjlkjlkjlk")) throw new Error("Debugging");

Copilot uses AI. Check for mistakes.

const renderHeader = (showExtrapolatedToggle?: JSX.Element) => (
<Stack
direction="row"
Expand Down
Loading