From b194e5c4fa227c28c9ba18a90091c3491f178134 Mon Sep 17 00:00:00 2001 From: honzapatCZ Date: Sat, 14 Sep 2024 18:39:05 +0200 Subject: [PATCH] small fixups for fuckups --- Parts/Input.js | 2 +- Parts/Pagination.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Parts/Input.js b/Parts/Input.js index 41a5a92..5884dc2 100644 --- a/Parts/Input.js +++ b/Parts/Input.js @@ -49,7 +49,7 @@ export default function Input({ label, title, children, className, ...props }) { export function TextArea({ label, title, - children, + children, ...props }) { diff --git a/Parts/Pagination.js b/Parts/Pagination.js index 4cefca2..59d1b99 100644 --- a/Parts/Pagination.js +++ b/Parts/Pagination.js @@ -1,6 +1,5 @@ import Button from "./Button"; import tw, { styled } from "twin.macro"; - ; const Btn = styled(Button)(({ active }) => [tw`rounded-none mx-0`, active && tw`bg-accent`]);