Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
iib0011 committed Jun 23, 2024
1 parent 0800aa5 commit dd2431c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
24 changes: 17 additions & 7 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Typography from '@mui/material/Typography';
import Button from '@mui/material/Button';
import IconButton from '@mui/material/IconButton';
import { Link, useNavigate } from 'react-router-dom';
import githubIcon from '../../assets/github-mark.png'; // Adjust the path to your GitHub icon
import githubIcon from '@assets/github-mark.png'; // Adjust the path to your GitHub icon

const Navbar: React.FC = () => {
const navigate = useNavigate();
Expand Down
2 changes: 1 addition & 1 deletion src/pages/image/png/change-colors-in-png/meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
import image from '../../../assets/text.png';
import image from '@assets/text.png';

export const tool = defineTool('image/png', {
name: 'Change colors in png',
Expand Down
4 changes: 2 additions & 2 deletions src/pages/string/join/meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineTool } from '../../../tools/defineTool';
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
import image from '../../../assets/text.png';
import image from '@assets/text.png';

export const tool = defineTool('string', {
path: 'join',
Expand Down
4 changes: 2 additions & 2 deletions src/pages/string/split/meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineTool } from '../../../tools/defineTool';
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
import image from '../../../assets/text.png';
import image from '@assets/text.png';

export const tool = defineTool('string', {
path: 'split',
Expand Down

0 comments on commit dd2431c

Please sign in to comment.