style: prettier format

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hermann_Kitio 2026-04-23 03:17:16 +03:00
parent 79bbbdc4e8
commit 99617f117c
45 changed files with 229 additions and 302 deletions

View file

@ -79,7 +79,10 @@ export function IdeesSuggestions({ idees, isLoading, error, isOpen, onClose }: P
<ul className="space-y-2 text-sm text-ink-2">
{idees.map((idee, i) => (
<li key={i} className="flex gap-2">
<span className="mt-[0.4em] size-1.5 shrink-0 rounded-full bg-expria" aria-hidden="true" />
<span
className="mt-[0.4em] size-1.5 shrink-0 rounded-full bg-expria"
aria-hidden="true"
/>
<span>{idee}</span>
</li>
))}