Skip to content

Commit

Permalink
🐛 fix: Import "package.json" from correct path in "NavBar.tsx" in "Co…
Browse files Browse the repository at this point in the history
…lorStudio" component

The import of "package.json" in "NavBar.tsx" in the "ColorStudio" component was updated to use the correct path. This fix resolves an issue where the file was being imported from the wrong location.
  • Loading branch information
canisminor1990 committed Aug 30, 2023
1 parent af98bf0 commit cd5c09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ColorStudio/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Segmented, Space, Tag } from 'antd';
import { memo } from 'react';
import styled from 'styled-components';

import PkgInfo from '@/../package.json';
import PkgInfo from '../../../package.json';

/******************************************************
*********************** Style *************************
Expand Down

0 comments on commit cd5c09c

Please sign in to comment.