Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
jer3m01 committed Aug 26, 2024
1 parent a2166b2 commit 9a496d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/docs/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export default defineConfig({
},
prerender: {
routes: ["/docs/core/overview/introduction"],
crawlLinks: true
}
crawlLinks: true,
},
},

extensions: ["mdx", "md"],
Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/combobox/combobox-base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -596,9 +596,8 @@ export function ComboboxBase<
focusStrategy: FocusStrategy | boolean,
triggerMode?: ComboboxTriggerMode,
) => {

// If set to only open manually, ignore other triggers
if (local.triggerMode === 'manual' && triggerMode !== 'manual') {
if (local.triggerMode === "manual" && triggerMode !== "manual") {
return;
}

Expand Down

0 comments on commit 9a496d1

Please sign in to comment.