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

Commit

Permalink
It's probably because you were jamming out to Dua Lipa too hard.
Browse files Browse the repository at this point in the history
This content comes from JoJo's Bizarre Encyclopedia (https://jojowiki.com), and must be attributed to its authors if you are using it on another wiki or web page, as specified in the license.
  • Loading branch information
raisfeld-ori committed May 1, 2024
1 parent 0312705 commit df25f98
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/pages/main_page/internal_apps/apps/settings/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import welcome from './assets/house-icon.svg';
import volume from './assets/megaphone-icon.svg';
import messages from './assets/bell-silent-line-icon.svg';
import about from './assets/info-circle-icon.svg';
import background from './assets/image-icon.svg';
import './settings.css';
import { useState } from "react";
import CategoryPage from "./actions";
Expand Down Expand Up @@ -32,6 +33,7 @@ export default function Settings() : AppInterface{
<Category name="Welcome" icon={welcome} set_page={set_page}></Category>
<Category name="About" icon={about} set_page={set_page}></Category>
<CategoryHead title="workspace"></CategoryHead>
<Category name="Background" icon={background} set_page={set_page}></Category>
<Category name="Volume" icon={volume} set_page={set_page}></Category>
<Category name="messages" icon={messages} set_page={set_page}></Category>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/pages/main_page/main_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { desktop_app } from './Grid';
import leaveicon from './assets/leave.png';
import { useLocation, useNavigate } from 'react-router-dom';
import exit from './assets/exit.png';
import { invoke } from '@tauri-apps/api';
import { invoke, notification } from '@tauri-apps/api';

Check failure on line 13 in src/pages/main_page/main_page.tsx

View workflow job for this annotation

GitHub Actions / build (windows-latest)

'notification' is declared but its value is never read.
import Settings from './internal_apps/apps/settings/settings';
import sudo from './internal_apps/apps/sudo/sudo';
import text_viewer from './internal_apps/apps/text_viewer/text_viewer';
Expand Down Expand Up @@ -123,6 +123,7 @@ export default function MainPage() {
}
const fs_props = file_system(open_file, notifications.new_notification);
const explorer_app = desktop_app("Files", folder, fs_props, true);

const [menu, set_menu] = useState(false);
useEffect(() => {
fs_props.update();
Expand Down

0 comments on commit df25f98

Please sign in to comment.