Skip to content
Closed
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
2 changes: 2 additions & 0 deletions app/api/architecture/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -737,3 +737,5 @@ export async function POST(req: NextRequest) {
decrementClones(ip);
}
}

.catch(err => console.error("Promise.all failed:", err));
2 changes: 1 addition & 1 deletion components/AdvancedColorPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ export default function AdvancedColorPicker({
{hexError && (
<p className="-mt-1.5 text-[10px] text-red-400 dark:text-red-500">{hexError}</p>
)}
{eyedropperSupported === false && (
{eyedropperSupported ! && (
<p className="-mt-1.5 text-[10px] text-amber-500 dark:text-amber-400">
Eyedropper not supported in this browser
</p>
Expand Down
Loading