diff --git a/src/components/BranchNotesDisplay/BranchNotesDisplay.tsx b/src/components/BranchNotesDisplay/BranchNotesDisplay.tsx index 5264ac9..a1b1386 100644 --- a/src/components/BranchNotesDisplay/BranchNotesDisplay.tsx +++ b/src/components/BranchNotesDisplay/BranchNotesDisplay.tsx @@ -30,7 +30,7 @@ const BranchNotesDisplay: React.FC = () => { StorageManager.setItem(`${route.game.name}_${route.name}_${route.version}_b_${branchIndex}`, content); }; - return ; + return ; }; export default BranchNotesDisplay; diff --git a/src/components/MapDisplay/MapDisplay.tsx b/src/components/MapDisplay/MapDisplay.tsx index f1d7e69..f44097d 100644 --- a/src/components/MapDisplay/MapDisplay.tsx +++ b/src/components/MapDisplay/MapDisplay.tsx @@ -30,7 +30,16 @@ const MapDisplay: React.FC = () => { }; return ( - + diff --git a/src/components/NoteEditor/NoteEditor.tsx b/src/components/NoteEditor/NoteEditor.tsx index 831e5d9..e8690c9 100644 --- a/src/components/NoteEditor/NoteEditor.tsx +++ b/src/components/NoteEditor/NoteEditor.tsx @@ -27,10 +27,11 @@ Quill.register("modules/blotFormatter", BlotFormatter); interface NoteEditorProps { notes: string; + id: string; onNotesChange: (content: string) => void; } -const NoteEditor: React.FC = ({ notes, onNotesChange }) => { +const NoteEditor: React.FC = ({ notes, onNotesChange, id }) => { const quillRef = useRef(null); const insertToEditor = useCallback( @@ -56,7 +57,7 @@ const NoteEditor: React.FC = ({ notes, onNotesChange }) => { } }, [quillRef, selectLocalImage]); - return ; + return ; }; export default NoteEditor; diff --git a/src/components/PointNotesDisplay/PointNotesDisplay.tsx b/src/components/PointNotesDisplay/PointNotesDisplay.tsx index 498af90..751d3b2 100644 --- a/src/components/PointNotesDisplay/PointNotesDisplay.tsx +++ b/src/components/PointNotesDisplay/PointNotesDisplay.tsx @@ -53,7 +53,7 @@ const PointNotesDisplay: React.FC = () => { StorageManager.setItem(`${route.game.name}_${route.name}_${route.version}_p_${branchIndex}_${pointIndex}`, content); }; - return ; + return ; }; export default PointNotesDisplay; diff --git a/src/components/ProgressDisplay/ProgressDisplay.tsx b/src/components/ProgressDisplay/ProgressDisplay.tsx index 39d39dc..a3a5f4e 100644 --- a/src/components/ProgressDisplay/ProgressDisplay.tsx +++ b/src/components/ProgressDisplay/ProgressDisplay.tsx @@ -74,7 +74,7 @@ const ProgressDisplay: React.FC = () => { }, [route, branchIndex, pointIndex]); return ( -
+
{" "} + + + )} + + ); +}; + +export default Tutorial; diff --git a/src/components/UpcomingDisplay/UpcomingDisplay.tsx b/src/components/UpcomingDisplay/UpcomingDisplay.tsx index d91a572..38386b3 100644 --- a/src/components/UpcomingDisplay/UpcomingDisplay.tsx +++ b/src/components/UpcomingDisplay/UpcomingDisplay.tsx @@ -53,7 +53,7 @@ const UpcomingDisplay: React.FC = () => { }, [route, branchIndex, pointIndex]); return ( -
+

Before next proving ground:

Points: {points}

Rock Koroks: {rockKorokCount}