Skip to content

Commit

Permalink
remove tools
Browse files Browse the repository at this point in the history
  • Loading branch information
uu-z committed Mar 14, 2024
1 parent c24fdb4 commit e4bfb5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "w3bstream-devnet",
"version": "1.6.0",
"version": "1.6.1",
"license": "MIT",
"description": "Starter pack using Nextjs, React, Typescript, tRPC, Mantine and Cypress",
"keywords": [
Expand Down
7 changes: 2 additions & 5 deletions src/components/IDE/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Header = observer(() => {
<Flex
alignItems="center"
onClick={() => {
router.push('/')
router.push('/');
w3s.actions.goHome();
}}
cursor={'pointer'}
Expand All @@ -64,7 +64,7 @@ const Header = observer(() => {
variant="unstyled"
index={getTabIndex(w3s.currentHeaderTab)}
onChange={(number) => {
console.log('number', number, getTabIndex(w3s.currentHeaderTab))
console.log('number', number, getTabIndex(w3s.currentHeaderTab));
// if (number === 0) {
// w3s.currentHeaderTab = 'PROJECTS';
// w3s.project.allProjects.onSelect(-1)
Expand Down Expand Up @@ -98,9 +98,6 @@ const Header = observer(() => {
<Tab px="0" ml="40px" h="40px" fontSize={'14px'} _selected={{ color: '#855EFF', fontWeight: 700, borderBottom: '2px solid #855EFF' }}>
<Link href={'/support'}>Support</Link>
</Tab>
<Tab px="0" ml="40px" h="40px" fontSize={'14px'} _selected={{ color: '#855EFF', fontWeight: 700, borderBottom: '2px solid #855EFF' }}>
<Link href={'/tools'}>Tools</Link>
</Tab>
</TabList>
</Tabs>
</Flex>
Expand Down

0 comments on commit e4bfb5a

Please sign in to comment.