Skip to content

Commit

Permalink
Fix Ctrl+Click on trace-id in local-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Sep 27, 2024
1 parent fc5232d commit 23ab4d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/error/UnexpectedError.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
} else if (_env.includes('stag')) {
return 'staging';
} else if (_env.includes('develop')) {
return 'develop';
return location.hostname === 'localhost' ? 'test' : 'develop';
} else {
return 'test';
}
Expand Down

0 comments on commit 23ab4d5

Please sign in to comment.