Skip to content

Commit 97db169

Browse files
committed
Fix new template modal
1 parent 8a64590 commit 97db169

File tree

1 file changed

+2
-2
lines changed
  • packages/app/src/app/pages/Dashboard/Content/CreateNewSandbox/NewSandboxModal

1 file changed

+2
-2
lines changed

packages/app/src/app/pages/Dashboard/Content/CreateNewSandbox/NewSandboxModal/NewSandboxModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ export const NewSandboxModal = inject('store', 'signals')(
6868
<TabContainer forking={forking} closing={closing}>
6969
{tabs.map(tab => (
7070
<Button
71-
key={name}
71+
key={tab.name}
7272
onClick={() => {
7373
selectTab(tab);
7474
}}
7575
selected={selectedTab === tab.tabIndex}
7676
>
77-
{name}
77+
{tab.name}
7878
</Button>
7979
))}
8080
</TabContainer>

0 commit comments

Comments
 (0)