diff --git a/app/components-preview/page.tsx b/app/components-preview/page.tsx index 633710d..ac3f7ae 100644 --- a/app/components-preview/page.tsx +++ b/app/components-preview/page.tsx @@ -436,7 +436,9 @@ export default function ComponentsPreview() { } title="Worker's cooperatives" description="Employee-owned businesses often need to clarify how power is shared, decisions are made, and how processes operate within their organizations." - onClick={() => console.log("IconCard clicked")} + onClick={() => { + // IconCard clicked handler + }} /> diff --git a/app/components/IconCard/IconCard.view.tsx b/app/components/IconCard/IconCard.view.tsx index d911e72..c4b462a 100644 --- a/app/components/IconCard/IconCard.view.tsx +++ b/app/components/IconCard/IconCard.view.tsx @@ -24,10 +24,10 @@ export function IconCardView({ {icon} - {/* Title - Centered with auto space above and below */} -
diff --git a/app/components/InputWithCounter/InputWithCounter.types.ts b/app/components/InputWithCounter/InputWithCounter.types.ts
index ec6d43c..c04ee47 100644
--- a/app/components/InputWithCounter/InputWithCounter.types.ts
+++ b/app/components/InputWithCounter/InputWithCounter.types.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-unused-vars, @typescript-eslint/no-unused-vars */
export interface InputWithCounterProps {
label?: string;
placeholder?: string;
@@ -9,4 +8,3 @@ export interface InputWithCounterProps {
className?: string;
inputClassName?: string;
}
-/* eslint-enable no-unused-vars, @typescript-eslint/no-unused-vars */
\ No newline at end of file
diff --git a/tests/components/IconCard.test.tsx b/tests/components/IconCard.test.tsx
index 18ff92f..5b050a8 100644
--- a/tests/components/IconCard.test.tsx
+++ b/tests/components/IconCard.test.tsx
@@ -13,7 +13,8 @@ type IconCardProps = React.ComponentProps