Skip to content

Commit

Permalink
vue: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Mar 8, 2025
1 parent a0a04ed commit e410336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/files/BlobView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ onMounted(async () => {
// Load the file into the OPFS
if (isImage || isPdf) {
const proj = await Workspace.setupAndGetActiveProj(router);
const path = await proj.syncFs(props.path);
const path = await proj.syncFs({ path: props.path });
const handle = await opfs.getFileHandle(path);
const file = await handle.getFile();
Expand Down

0 comments on commit e410336

Please sign in to comment.