Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 14 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"permissions": {
"allow": [
"Bash(gh issue view:*)",
"Bash(npm run lint)",
"Bash(npm run build:*)",
"Bash(npm install)",
"Bash(npm test:*)",
"Bash(npx tsc:*)",
"Bash(git push:*)"
],
"deny": []
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export default async function BoardLayout(props: PropsWithChildren<BoardLayoutPr
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
parsedParams.angle,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export default async function ListLayout(props: PropsWithChildren<LayoutProps>)
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
parsedParams.angle,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export default async function DynamicResultsPage(props: {
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
parsedParams.angle,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export default async function DynamicResultsPage(props: { params: Promise<BoardR
parsedParams.board_name,
layout.name,
size.name,
size.description,
selectedSets.map((s) => s.name),
parsedParams.angle,
parsedParams.climb_uuid,
Expand Down
1 change: 1 addition & 0 deletions app/components/board-page/back-to-climb-list-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const BackToClimbList = ({
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
angle,
)
Expand Down
1 change: 1 addition & 0 deletions app/components/climb-card/climb-card-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const ClimbCardActions = ({ climb, boardDetails }: ClimbCardActionsProps) => {
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
climb.angle,
climb.uuid,
Expand Down
1 change: 1 addition & 0 deletions app/components/climb-card/climb-thumbnail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const ClimbThumbnail = ({ boardDetails, currentClimb, enableNavigation = false,
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
currentClimb.angle,
currentClimb.uuid,
Expand Down
4 changes: 2 additions & 2 deletions app/components/climb-view/climb-view-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ const ClimbViewActions = ({ climb, boardDetails, auroraAppUrl, angle }: ClimbVie
};

const getBackToListUrl = () => {
const { board_name, layout_name, size_name, set_names } = boardDetails;
const { board_name, layout_name, size_name, size_description, set_names } = boardDetails;

// Use slug-based URL construction if slug names are available
if (layout_name && size_name && set_names) {
return constructClimbListWithSlugs(board_name, layout_name, size_name, set_names, angle);
return constructClimbListWithSlugs(board_name, layout_name, size_name, size_description, set_names, angle);
}

// Fallback to numeric format
Expand Down
1 change: 1 addition & 0 deletions app/components/queue-control/next-climb-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export default function NextClimbButton({ navigate = false, boardDetails }: Next
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
angle,
nextClimb.climb.uuid,
Expand Down
1 change: 1 addition & 0 deletions app/components/queue-control/previous-climb-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default function PreviousClimbButton({ navigate = false, boardDetails }:
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
angle,
previousClimb.climb.uuid,
Expand Down
1 change: 1 addition & 0 deletions app/components/setup-wizard/board-config-preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export default function BoardConfigPreview({ config, onDelete, boardConfigs }: B
details.board_name,
details.layout_name,
details.size_name,
details.size_description,
details.set_names,
savedAngle,
);
Expand Down
3 changes: 3 additions & 0 deletions app/components/setup-wizard/consolidated-board-config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ const ConsolidatedBoardConfig = ({ boardConfigs }: ConsolidatedBoardConfigProps)
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
savedAngle,
);
Expand Down Expand Up @@ -326,6 +327,7 @@ const ConsolidatedBoardConfig = ({ boardConfigs }: ConsolidatedBoardConfigProps)
cachedBoardDetails.board_name,
cachedBoardDetails.layout_name,
cachedBoardDetails.size_name,
cachedBoardDetails.size_description,
cachedBoardDetails.set_names,
selectedAngle,
);
Expand Down Expand Up @@ -425,6 +427,7 @@ const ConsolidatedBoardConfig = ({ boardConfigs }: ConsolidatedBoardConfigProps)
previewBoardDetails.board_name,
previewBoardDetails.layout_name,
previewBoardDetails.size_name,
previewBoardDetails.size_description,
previewBoardDetails.set_names,
selectedAngle,
);
Expand Down
1 change: 1 addition & 0 deletions app/components/setup-wizard/start-climbing-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export default function StartClimbingButton({
boardDetails.board_name,
boardDetails.layout_name,
boardDetails.size_name,
boardDetails.size_description,
boardDetails.set_names,
selectedAngle,
);
Expand Down
Loading