fix: crash on pressing add topic button (#155)

This commit is contained in:
thecodrr
2020-09-21 11:51:10 +05:00
parent b3ec638854
commit a7f67738ed

View File

@@ -44,7 +44,7 @@ function Topics(props) {
button={{
content: "Add more topics",
onClick: async () => {
await showTopicDialog(props.notebook.id);
await showTopicDialog(notebookId);
},
}}
/>