Skip to content

Commit

Permalink
Removed DesktopOnly from ComponentExplorer override to allow issue to…
Browse files Browse the repository at this point in the history
… occur on mobile as well
  • Loading branch information
thelulzy committed Jun 17, 2024
1 parent 298975f commit 00b320c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quartz.layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const defaultContentPageLayout: PageLayout = {
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer({folderClickBehavior: "link"})),
Component.Explorer({folderClickBehavior: "link"}),
],
right: [
Component.Graph(),
Expand All @@ -42,7 +42,7 @@ export const defaultListPageLayout: PageLayout = {
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.Explorer({folderClickBehavior: "link"})),
Component.Explorer({folderClickBehavior: "link"}),
],
right: [],
}

0 comments on commit 00b320c

Please sign in to comment.