File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/app/src/app/components/SandboxList Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import ForkIcon from 'react-icons/lib/go/repo-forked';
77import { sandboxUrl } from '@codesandbox/common/lib/utils/url-generator' ;
88import getIcon from '@codesandbox/common/lib/templates/icons' ;
99import { SmallSandbox } from '@codesandbox/common/lib/types' ;
10+ import { getSandboxName } from '@codesandbox/common/lib/utils/get-sandbox-name' ;
1011import { DeleteSandboxButton } from '../DeleteSandboxButton' ;
1112import { PrivacyStatus } from '../PrivacyStatus' ;
1213import {
@@ -62,7 +63,7 @@ export const SandboxList: React.FC<ISandboxListProps> = ({
6263 { /* We should probably use the Sandbox interface instead
6364 * of SmallSandbox
6465 // @ts -ignore */ }
65- < Link to = { sandboxUrl ( s ) } > { s . title || s . id } </ Link >
66+ < Link to = { sandboxUrl ( s ) } > { getSandboxName ( s ) } </ Link >
6667 < PrivacyStatus privacy = { s . privacy } asIcon />
6768 </ td >
6869 < td > { format ( new Date ( s . insertedAt ) , 'MMM dd, yyyy' ) } </ td >
You can’t perform that action at this time.
0 commit comments