Skip to content

Commit

Permalink
Merge branch 'arb-ltip' into deployments/arbitrum
Browse files Browse the repository at this point in the history
  • Loading branch information
froid1911 committed Jun 20, 2024
2 parents d96ccc7 + a8fd5a8 commit 082e08d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@powerhousedao/design-system": "1.0.0-alpha.122",
"@powerhousedao/design-system": "1.0.0-alpha.124",
"@sentry/react": "^7.109.0",
"did-key-creator": "^1.2.0",
"document-drive": "1.0.0-alpha.77",
"document-drive": "1.0.0-alpha.78",
"document-model": "1.5.0",
"document-model-libs": "1.59.0-arbitrum.8",
"electron-is-dev": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const Content = () => {
// builds the path from the url checking if the nodes exist
const path = [encodeID(drive.state.global.id)];
let currentNodes = drive.state.global.nodes.filter(
node => node.parentFolder === null,
node => !node.parentFolder,
);
if (params['*']) {
const nodeNames = decodeURIComponent(params['*']).split('/');
Expand Down Expand Up @@ -324,7 +324,7 @@ const Content = () => {
document={selectedDocument}
onClose={() => {
navigateToItemId(
selectedFileNode.parentFolder ?? driveID,
selectedFileNode.parentFolder || driveID,
);
setSelectedFileNode(undefined);
}}
Expand Down

0 comments on commit 082e08d

Please sign in to comment.