fix(CI): upgrade prettier oxc plugin version (#8242)
* fix: upgrade prettier oxc plugin version * fix: type errors
This commit is contained in:
parent
1090b3e938
commit
c3906048ea
31 changed files with 237 additions and 243 deletions
|
|
@ -60,7 +60,7 @@
|
|||
"@plane/eslint-config": "workspace:*",
|
||||
"@plane/tailwind-config": "workspace:*",
|
||||
"@plane/typescript-config": "workspace:*",
|
||||
"@prettier/plugin-oxc": "0.0.4",
|
||||
"@prettier/plugin-oxc": "0.1.3",
|
||||
"@storybook/addon-essentials": "^8.1.1",
|
||||
"@storybook/addon-interactions": "^8.1.1",
|
||||
"@storybook/addon-links": "^8.1.1",
|
||||
|
|
|
|||
|
|
@ -2,8 +2,10 @@ import React, { useState } from "react";
|
|||
import { cn } from "@plane/utils";
|
||||
import { AuthInput } from "./auth-input";
|
||||
|
||||
export interface AuthConfirmPasswordInputProps
|
||||
extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "autoComplete"> {
|
||||
export interface AuthConfirmPasswordInputProps extends Omit<
|
||||
React.InputHTMLAttributes<HTMLInputElement>,
|
||||
"autoComplete"
|
||||
> {
|
||||
password: string;
|
||||
label?: string;
|
||||
error?: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue