fix: lint errors

This commit is contained in:
sriram veeraghanta
2024-12-04 17:22:41 +05:30
parent b73ea37798
commit fa3aa362a9
9 changed files with 9 additions and 9 deletions

View File

@@ -125,7 +125,7 @@ export interface IEditorProps {
onEnterKeyPress?: (e?: any) => void;
placeholder?: string | ((isFocused: boolean, value: string) => string);
tabIndex?: number;
value?: string | null;
value?: string | null;
}
export interface ILiteTextEditor extends IEditorProps {
extensions?: any[];

View File

@@ -1,5 +1,5 @@
import { TFileEntityInfo, TFileSignedURLResponse } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import { TFileEntityInfo, TFileSignedURLResponse } from "@plane/types";
// helpers
import { generateFileUploadPayload, getAssetIdFromUrl, getFileMetaDataForUpload } from "@/helpers/file.helper";
// services

View File

@@ -1,5 +1,5 @@
import type { IInstanceInfo } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import type { IInstanceInfo } from "@plane/types";
// services
import { APIService } from "@/services/api.service";

View File

@@ -1,5 +1,5 @@
import { IIssueLabel } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import { IIssueLabel } from "@plane/types";
// services
import { APIService } from "./api.service";

View File

@@ -1,5 +1,5 @@
import type { IProjectMember, IProjectMembership } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import type { IProjectMember, IProjectMembership } from "@plane/types";
// services
import { APIService } from "@/services/api.service";

View File

@@ -1,5 +1,5 @@
import { TProjectPublishSettings } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import { TProjectPublishSettings } from "@plane/types";
// services
import { APIService } from "@/services/api.service";

View File

@@ -1,5 +1,5 @@
import { IState } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import { IState } from "@plane/types";
// services
import { APIService } from "./api.service";

View File

@@ -1,5 +1,5 @@
import { IUser, TUserProfile } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import { IUser, TUserProfile } from "@plane/types";
// services
import { APIService } from "@/services/api.service";

View File

@@ -1,5 +1,5 @@
import { TFileMetaDataLite, TFileSignedURLResponse } from "@plane/types";
import { API_BASE_URL } from "@plane/constants";
import { TFileMetaDataLite, TFileSignedURLResponse } from "@plane/types";
/**
* @description from the provided signed URL response, generate a payload to be used to upload the file