Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshay committed Nov 23, 2023
1 parent 22693f7 commit 7157ebf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
7 changes: 2 additions & 5 deletions src/components/form/Input.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@
import ExclamationCircle from "@components/icons/ExclamationCircle.astro"
import { clsx } from "@utils/cn"
export type ExcludedProps =
| "name"
| "class"
| "aria-describedby"
| "aria-invalid"
// prettier-ignore
export type ExcludedProps = "name" | "class" | "aria-describedby" | "aria-invalid"
export type Props = Omit<astroHTML.JSX.InputHTMLAttributes, ExcludedProps> & {
name: string
Expand Down
13 changes: 4 additions & 9 deletions src/components/form/Textarea.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@
import ExclamationCircle from "@components/icons/ExclamationCircle.astro"
import { clsx } from "@utils/cn"
export type ExcludedProps =
| "name"
| "class"
| "aria-describedby"
| "aria-invalid"
// prettier-ignore
export type ExcludedProps = "name" | "class" | "aria-describedby" | "aria-invalid"
export type Props = Omit<
astroHTML.JSX.TextareaHTMLAttributes,
ExcludedProps
> & {
// prettier-ignore
export type Props = Omit<astroHTML.JSX.TextareaHTMLAttributes, ExcludedProps> & {
name: string
label: string
helpText?: string
Expand Down

1 comment on commit 7157ebf

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on 7157ebf Nov 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Module not found "file:///src/main.ts".

Please sign in to comment.