Skip to content

Commit

Permalink
fix: Can create folder in a shared folder
Browse files Browse the repository at this point in the history
We didn't pass the currentFolderId to the FolderViewBody from
the Sharing View. So we had currentFolderId undefined and
then when we create a folder in a shared folder, from the
SharingsView, then we make a request to POST
`/files/undefined`
  • Loading branch information
Crash-- committed Dec 1, 2023
1 parent 70dcb82 commit feb100f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ const SharingsFolderView = ({ sharedDocumentIds }) => {
queryResults={[foldersResult, filesResult]}
canSort
extraColumns={extraColumns}
currentFolderId={currentFolderId}
/>
<Outlet />
</FolderView>
Expand Down

0 comments on commit feb100f

Please sign in to comment.