We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ff96d commit 7d5e2c7Copy full SHA for 7d5e2c7
packages/app/src/app/pages/Sandbox/index.js
@@ -51,7 +51,7 @@ class SandboxPage extends React.Component {
51
// shortid and get the data with that. This solves the problem with urls becoming
52
// invalid after giving a sandbox a new title.
53
const split = id.split('-');
54
- if (split.length > 1) {
+ if (!id.startsWith('github') && split.length > 1) {
55
id = split.pop();
56
}
57
0 commit comments