Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidNic11 committed Jul 30, 2024
1 parent 9497e7d commit 48cc4d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx run-many -t --parallel=10"
"start": "nx run-many -t dev --parallel=10"
},
"private": true,
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/workshop/src/scenes/Exercises/Exercises.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { WorkshopScene } from "shared/workshop";
import type { FC } from "react";

import { Route, Routes } from "react-router-dom";

Expand All @@ -17,7 +17,7 @@ import ShopCategories from "./components/ShopCategories";
import SearchingTheCatalog from "./components/SearchingTheCatalog";
import Conclusion from "./components/Conclusion";

const Workshop: WorkshopScene = () => {
const Workshop: FC = () => {
return (
<Routes>
<Route path="*" element={<Layout />}>
Expand Down

0 comments on commit 48cc4d3

Please sign in to comment.