Skip to content

Commit

Permalink
Update solve path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
hlysine committed Jan 27, 2025
1 parent 816f97c commit 4c16cef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/instructions/parts/PerfectionControlsPart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ export default memo(function PerfectionControlsPart() {
disabled={progress < 100}
onClick={async () => {
const output = solvePath
.map(({ x, y }) => `${x},${y}`)
.join('/');
.map(({ x, y }) => `${x}:${y}`)
.join(', ');
await navigator.clipboard.writeText(output);
setTooltip('Copied!');
}}
Expand Down

0 comments on commit 4c16cef

Please sign in to comment.