fix(CI): upgrade prettier oxc plugin version (#8242)

* fix: upgrade prettier oxc plugin version

* fix: type errors
This commit is contained in:
sriram veeraghanta 2025-12-04 18:27:50 +05:30 committed by GitHub
parent 1090b3e938
commit c3906048ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 237 additions and 243 deletions

View file

@ -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",

View file

@ -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;