Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
proudparrot2 committed Aug 15, 2024
1 parent ef6cdc7 commit cde3dcc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/lib/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ export function togglePluginDisable(id: string) {
return
}

import Viewer from '@/internal/Viewer'
import Status from '@/internal/Status'
import gba from '@/internal/GBA'
import Viewer from '@/internal/viewer'

Check failure on line 45 in src/lib/plugins.ts

View workflow job for this annotation

GitHub Actions / Deploy

Cannot find module '@/internal/viewer' or its corresponding type declarations.
import Status from '@/internal/status'

Check failure on line 46 in src/lib/plugins.ts

View workflow job for this annotation

GitHub Actions / Deploy

Cannot find module '@/internal/status' or its corresponding type declarations.
import gba from '@/internal/gba'

Check failure on line 47 in src/lib/plugins.ts

View workflow job for this annotation

GitHub Actions / Deploy

Cannot find module '@/internal/gba' or its corresponding type declarations.

export function registerDefaultPlugins() {
registerPlugin(Status)
Expand Down
14 changes: 7 additions & 7 deletions src/root.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Home from "./routes/home.tsx";
import Navbar from "./components/Navbar.tsx";
import Store from "./routes/store.tsx";
import { Toaster } from "./components/ui/sonner.tsx";
import Home from "./routes/home";
import Navbar from "./components/navbar";

Check failure on line 2 in src/root.tsx

View workflow job for this annotation

GitHub Actions / Deploy

Cannot find module './components/navbar' or its corresponding type declarations.
import Store from "./routes/store";
import { Toaster } from "./components/ui/sonner";
import { HashRouter, Routes, Route } from "react-router-dom";
import Plugins from "./routes/plugins.tsx";
import Plugins from "./routes/plugins";
import { useEffect } from "react";
import { registerDefaultPlugins } from "./lib/plugins.ts";
import PluginRouter from "./routes/pluginrouter.tsx";
import { registerDefaultPlugins } from "./lib/plugins";
import PluginRouter from "./routes/pluginrouter";
import { createRoot } from "react-dom/client";

import "./styles.css";
Expand Down

0 comments on commit cde3dcc

Please sign in to comment.