Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/client/src/ce/pages/common/PackageSearchItem.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
interface Props {
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
searchedPackages: any;
import type { Package } from "ee/constants/PackageConstants";

export interface PackageSearchItemProps {
searchedPackages: Package[];
}

const PackageSearchItem = (props: Props) => {
const PackageSearchItem = (props: PackageSearchItemProps) => {
// eslint-disable-next-line
const { searchedPackages } = props;

Expand Down
4 changes: 2 additions & 2 deletions app/client/src/ce/pages/common/WorkflowSearchItem.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Workflow } from "ee/constants/WorkflowConstants";

interface Props {
export interface WorkflowSearchItemProps {
workflowsList: Workflow[];
}

const WorkflowSearchItem = (props: Props) => {
const WorkflowSearchItem = (props: WorkflowSearchItemProps) => {
// eslint-disable-next-line
const { workflowsList } = props;

Expand Down