Skip to content

Commit

Permalink
chore: Update image paths
Browse files Browse the repository at this point in the history
  • Loading branch information
spotandjake committed Jun 11, 2024
1 parent fa4f06a commit 4f81c8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Files/Components/Editor/Upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Upload extends React.Component<MyProps, { }> {
return (
<div className={styles.Icon} onClick={() => (this.input.click())}>
<picture>
<img alt="Upload" src={'/Images/Upload.svg'} width="18" height="18" />
<img alt="Upload" src={'/NeoFox/Images/Upload.svg'} width="18" height="18" />
</picture>
<input
type="file"
Expand Down
6 changes: 3 additions & 3 deletions Files/Components/Login_Btn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ const Button = (props: MyProps) => {
switch(Type) {
case 'Google':
Auth = new GoogleAuthProvider();
Img = '/Images/Google.svg';
Img = '/NeoFox/Images/Google.svg';
break;
case 'Github':
Auth = new GithubAuthProvider();
Img = '/Images/Github.png';
Img = '/NeoFox/Images/Github.png';
break;
case 'Twitter':
Auth = new TwitterAuthProvider();
Img = '/Images/Twitter.svg';
Img = '/NeoFox/Images/Twitter.svg';
Style.push(styles.Twitter);
break;
}
Expand Down
4 changes: 2 additions & 2 deletions Files/Components/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Settings = (props: MyProps) => {
title="Leave Server"
>
<Image
src={'/Icons/Leave.svg'}
src={'/NeoFox/Icons/Leave.svg'}
alt={'Leave'}
layout="responsive"
width={40}
Expand Down Expand Up @@ -82,7 +82,7 @@ const Settings = (props: MyProps) => {
title="logout"
>
<Image
src={'/Icons/Logout.svg'}
src={'/NeoFox/Icons/Logout.svg'}
alt={'Logout'}
layout="responsive"
width={40}
Expand Down

0 comments on commit 4f81c8c

Please sign in to comment.