Skip to content

Commit

Permalink
chore(prettier): fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed May 4, 2024
1 parent bd5168b commit 65f2fce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/broken-link-checker/src/index.ts
Expand Up @@ -166,8 +166,9 @@ const generateOutputMd = (output: Output): string => {

// @ts-expect-error
links.forEach((link: TODO) => {
outputMd += `| [${new URL(link.url.resolved).pathname}](${link.url.resolved
}) | "${link.html?.text?.trim().replaceAll("\n", "")}" |
outputMd += `| [${new URL(link.url.resolved).pathname}](${
link.url.resolved
}) | "${link.html?.text?.trim().replaceAll("\n", "")}" |
`
})
})
Expand Down
2 changes: 1 addition & 1 deletion docs/components/Docsearch/wrapper.tsx
Expand Up @@ -32,7 +32,7 @@ const searchClient = {
},
}

export default function() {
export default function () {
const ctrlKHandler = (e: KeyboardEvent) => {
if (e.repeat || e.target instanceof HTMLInputElement) return
if (e.ctrlKey && e.key === "k") {
Expand Down
7 changes: 2 additions & 5 deletions docs/pages/_meta.js
Expand Up @@ -60,11 +60,8 @@ export default {
<span className="font-normal text-[0.65rem] text-neutral-400">
Sponsored
</span>
<a
href="https://go.clerk.com/DefS1u4"
target="_blank"
>
<div className="flex flex-col gap-1 p-2 text-xs font-normal rounded-md border ml-[1px] bg-neutral-100 text-neutral-500 border-neutral-300 dark:bg-neutral-800 dark:text-neutral-400 dark:border-neutral-700 mt-2">
<a href="https://go.clerk.com/DefS1u4" target="_blank">
<div className="flex flex-col gap-1 p-2 mt-2 text-xs font-normal rounded-md border ml-[1px] bg-neutral-100 text-neutral-500 border-neutral-300 dark:bg-neutral-800 dark:text-neutral-400 dark:border-neutral-700">
Looking for a hosted alternative?
<span className="text-sky-600 dark:text-sky-500">Use Clerk ›</span>
</div>
Expand Down

0 comments on commit 65f2fce

Please sign in to comment.