Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
imcodingideas committed Sep 18, 2023
1 parent 3241e5f commit 293997d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import {
DropdownMenuTrigger,
} from './components/ui/dropdown-menu.tsx'
import { Icon, href as iconsHref } from './components/ui/icon.tsx'
import fontStylestylesheetUrl from './styles/font.css'
import tailwindStylesheetUrl from './styles/tailwind.css'
import fontStyleStyleSheetUrl from './styles/font.css'
import tailwindStyleSheetUrl from './styles/tailwind.css'
import { authenticator, getUserId } from './utils/auth.server.ts'
import { ClientHintCheck, getHints, useHints } from './utils/client-hints.tsx'
import { getConfetti } from './utils/confetti.server.ts'
Expand All @@ -65,8 +65,8 @@ export const links: LinksFunction = () => {
// Preload svg sprite as a resource to avoid render blocking
{ rel: 'preload', href: iconsHref, as: 'image' },
// Preload CSS as a resource to avoid render blocking
{ rel: 'preload', href: fontStylestylesheetUrl, as: 'style' },
{ rel: 'preload', href: tailwindStylesheetUrl, as: 'style' },
{ rel: 'preload', href: fontStyleStyleSheetUrl, as: 'style' },
{ rel: 'preload', href: tailwindStyleSheetUrl, as: 'style' },
cssBundleHref ? { rel: 'preload', href: cssBundleHref, as: 'style' } : null,
{ rel: 'mask-icon', href: '/favicons/mask-icon.svg' },
{
Expand All @@ -82,8 +82,8 @@ export const links: LinksFunction = () => {
} as const, // necessary to make typescript happy
//These should match the css preloads above to avoid css as render blocking resource
{ rel: 'icon', type: 'image/svg+xml', href: '/favicons/favicon.svg' },
{ rel: 'stylesheet', href: fontStylestylesheetUrl },
{ rel: 'stylesheet', href: tailwindStylesheetUrl },
{ rel: 'stylesheet', href: fontStyleStyleSheetUrl },
{ rel: 'stylesheet', href: tailwindStyleSheetUrl },
cssBundleHref ? { rel: 'stylesheet', href: cssBundleHref } : null,
].filter(Boolean)
}
Expand Down
2 changes: 1 addition & 1 deletion tests/db-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export async function getNoteImages() {
}),
img({
altText:
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
filepath: './tests/fixtures/images/notes/6.png',
}),
img({
Expand Down

0 comments on commit 293997d

Please sign in to comment.