Skip to content

Commit

Permalink
Merge branch 'main' into fix/revert-appbar
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund authored Jan 29, 2024
2 parents 94cc4d9 + 54ee2f8 commit 69f4ed6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 29 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"lint": "eslint --fix --ext .ts,.tsx .",
"prettier:fix": "prettier . --write",
"prepare": "husky install",
"pre-commit": "yarn test --watchAll=false && yarn lint-staged",
"pre-commit": "yarn lint-staged",
"generate-schema:radix": "npx openapi-typescript https://api-pepm-dev.radix.equinor.com/swagger/v1/swagger.yaml -o src/models/schema.d.ts"
},
"lint-staged": {
Expand Down
6 changes: 0 additions & 6 deletions src/App.test.tsx

This file was deleted.

21 changes: 0 additions & 21 deletions src/features/AppBar/AppBar.test.tsx

This file was deleted.

3 changes: 2 additions & 1 deletion src/features/AppBar/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { useLocation, useNavigate } from 'react-router-dom';
import * as Styled from './AppBar.styled';
import { Icons } from './Icons/Icons';
import { Navigation } from './Navigation/Navigation';

const AppBar = ({ title }: { title: string }) => {
const navigate = useNavigate();
const location = useLocation();
Expand All @@ -16,7 +17,7 @@ const AppBar = ({ title }: { title: string }) => {
>
{title}
</Styled.Header>
<Navigation />
{/* <Navigation /> */}
<TopBar.Actions>
<Icons />
</TopBar.Actions>
Expand Down

0 comments on commit 69f4ed6

Please sign in to comment.