fix(misc): work on ocp to improve the errors that were missed and better logging

This commit is contained in:
2025-03-30 10:11:58 -05:00
parent a5dee58223
commit 63b1151cb7
7 changed files with 78 additions and 26 deletions

View File

@@ -0,0 +1,5 @@
import { Button } from "@/components/ui/button";
export const DebugButton = (data: any) => {
return <Button onClick={() => console.log(data.data)}>Debug</Button>;
};