search error

editorcontextDummy
filip mertens 2 years ago
parent 925a863fa2
commit fce962f670
  1. 6
      libs/remix-ui/search/src/lib/context/context.tsx

@ -338,8 +338,10 @@ export const SearchProvider = ({
async function fetchWorkspace() {
try {
const workspace = await plugin.call('filePanel', 'getCurrentWorkspace')
if (workspace) value.setCurrentWorkspace(workspace.name)
setFiles(await getDirectory('/', plugin))
if (workspace && workspace.name) {
value.setCurrentWorkspace(workspace.name)
setFiles(await getDirectory('/', plugin))
}
} catch (e) {
console.log(e)
}

Loading…
Cancel
Save