Skip to content

Commit 6da9911

Browse files
committed
fix a few missing things
1 parent a4a152f commit 6da9911

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

app/components/ui/use-toast.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Inspired by react-hot-toast library
22
import * as React from 'react'
33

4-
import type { ToastActionElement, ToastProps } from '~/components/ui/toast.tsx'
4+
import { type ToastActionElement, type ToastProps } from '~/components/ui/toast.tsx'
55

66
const TOAST_LIMIT = 4
77
const TOAST_REMOVE_DELAY = 1000000

app/routes/_marketing+/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { V2_MetaFunction } from '@remix-run/node'
1+
import { type V2_MetaFunction } from '@remix-run/node'
22
import {
33
Tooltip,
44
TooltipContent,

app/routes/admin+/cache_.sqlite.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { DataFunctionArgs } from '@remix-run/node'
1+
import { type DataFunctionArgs } from '@remix-run/node'
22
import { json, redirect } from '@remix-run/node'
33
import { getInstanceInfo, getInternalInstanceDomain } from 'litefs-js'
44
import { z } from 'zod'

app/utils/flash-session.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { randomUUID } from 'crypto'
22
import { createCookieSessionStorage, redirect } from '@remix-run/node'
33
import { z } from 'zod'
4-
import type { ToastProps } from '~/components/ui/toast.tsx'
4+
import { type ToastProps } from '~/components/ui/toast.tsx'
55

66
const FLASH_SESSION = 'flash'
77

other/sly/transform-icon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Meta } from '@sly-cli/sly'
1+
import { type Meta } from '@sly-cli/sly'
22

33
/**
44
* @type {import('@sly-cli/sly/dist').Transformer}

tailwind.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Config } from 'tailwindcss'
1+
import { type Config } from 'tailwindcss'
22
import defaultTheme from 'tailwindcss/defaultTheme.js'
33
import animatePlugin from 'tailwindcss-animate'
44
import radixPlugin from 'tailwindcss-radix'

0 commit comments

Comments
 (0)