Skip to content

Commit

Permalink
update: runner
Browse files Browse the repository at this point in the history
  • Loading branch information
vpbs2 committed Sep 14, 2024
1 parent e25e862 commit 1cd2b93
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions meerkat-browser-runner/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
FileManagerType,
getMainAppName,
getRunnerAppName,
RunnerIndexedDBFileManager,
RunnerMemoryDBFileManager,
WindowCommunication,
} from '@devrev/meerkat-dbm';

Expand Down Expand Up @@ -72,7 +72,7 @@ export function App() {
}

if (!fileManagerRef.current) {
fileManagerRef.current = new RunnerIndexedDBFileManager({
fileManagerRef.current = new RunnerMemoryDBFileManager({
instanceManager: instanceManagerRef.current,
fetchTableFileBuffers: async () => [],
logger: log,
Expand All @@ -82,6 +82,7 @@ export function App() {
payload: event,
});
},
communication: communicationRef.current,
});
}

Expand Down

0 comments on commit 1cd2b93

Please sign in to comment.