We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c77d5 commit 7ef295aCopy full SHA for 7ef295a
2 files changed
platforms/web/src/Teach.tsx
@@ -114,7 +114,7 @@ function Teach() {
114
const uploadId = `upload-${Date.now()}`;
115
const storageId = json.settings?.id || uploadId;
116
117
- await db.addTeacherMap(storageId, json, null);
+ await db.addTeacherMap(storageId, json, undefined);
118
const maps = await db.getAllTeacherMaps();
119
setAllMaps(maps);
120
setShowAddDialog(false);
platforms/web/src/TeacherEditor.tsx
@@ -5,7 +5,6 @@ import "@learningmap/learningmap/index.css";
5
import * as db from './db';
6
import './TeacherEditor.css';
7
import { Header } from './Header';
8
-import { Footer } from './Footer';
9
10
// This component wraps the LearningMapEditor and saves maps to the teacher's collection
11
// when they are shared
0 commit comments