Skip to content

Commit

Permalink
fixing dir name
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Nov 26, 2023
1 parent 68f52e7 commit 66d8cdd
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { GitHubIcon, DiscordIcon } from '@/components/Icons';
import { GitHubIcon, DiscordIcon } from '@/components/IIcons';
import ExternalLink from '@/components/ExternalLink';

const Footer = () => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Header/RegionButtons.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IconButton } from '@mui/material';
import { EuIcon, UsIcon } from '@/components/Icons';
import { EuIcon, UsIcon } from '@/components/IIcons';

import { REGIONS } from '@/constants/region';

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import { ReactComponent as USSvg } from './us.svg';
import { ReactComponent as EUSvg } from './eu.svg';

import { ReactComponent as DiscordSvg } from './discord.svg';
import { ReactComponent as GitHubSvg } from './github.svg';

export const UsIcon = (props: any) => {
return <USSvg {...props} height={32} width={32} />;
};
export const EuIcon = (props: any) => {
return <EUSvg {...props} height={32} width={32} />;
};

export const DiscordIcon = (props: any) => {
return <DiscordSvg {...props} />;
};

export const GitHubIcon = (props: any) => {
return <GitHubSvg {...props} />;
};
import { ReactComponent as USSvg } from './us.svg';
import { ReactComponent as EUSvg } from './eu.svg';

import { ReactComponent as DiscordSvg } from './discord.svg';
import { ReactComponent as GitHubSvg } from './github.svg';

export const UsIcon = (props: any) => {
return <USSvg {...props} height={32} width={32} />;
};
export const EuIcon = (props: any) => {
return <EUSvg {...props} height={32} width={32} />;
};

export const DiscordIcon = (props: any) => {
return <DiscordSvg {...props} />;
};

export const GitHubIcon = (props: any) => {
return <GitHubSvg {...props} />;
};
File renamed without changes
2 changes: 1 addition & 1 deletion frontend/src/components/SearchBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Autocomplete, InputAdornment, TextField, Typography } from '@mui/materi
import SearchIcon from '@mui/icons-material/Search';

import { getClassIcon, getClassNameColor } from '@/utils/table';
import { EuIcon, UsIcon } from '../Icons';
import { EuIcon, UsIcon } from '../IIcons';

import { searchPlayers } from '@/services/stats.service';
import { capitalizeNickname } from '@/utils/urlparts';
Expand Down

0 comments on commit 66d8cdd

Please sign in to comment.