Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
removes '/' from the location
Browse files Browse the repository at this point in the history
  • Loading branch information
raisfeld-ori committed Mar 26, 2024
1 parent c03ed00 commit 1d4ce8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/main_page/internal_apps/apps/file_system.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function file_system() : [JSX.Element, React.Dispatch<React.SetStateAction<strin
<button onClick={async () => await upload_file(update_fs, set_files)}>upload file</button>
</div>;
let Application = <div className='ApplicationDirectory'>
<h1 className='filesystemtxt2'>/{location}/</h1>
<h1 className='filesystemtxt2'>{location}</h1>
</div>
let app_html = <div className='frametest2' onContextMenu={right_click}>
{Application}
Expand Down

0 comments on commit 1d4ce8a

Please sign in to comment.