fix autocomplete on /admin/funds
Build Images and Deploy / Update-PROD-Stack (push) Successful in 1m20s
Build Images and Deploy / Update-PROD-Stack (push) Successful in 1m20s
This commit is contained in:
@@ -180,9 +180,9 @@ export default function AdminFundActions({ funds: initialFunds }: { funds: Fund[
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{funds.map((fund) => (
|
{funds.map((fund) => (
|
||||||
<div key={fund.id} className="bg-surface-card border border-surface-border rounded-xl overflow-hidden">
|
<div key={fund.id} className="bg-surface-card border border-surface-border rounded-xl">
|
||||||
<div
|
<div
|
||||||
className="flex items-center justify-between px-4 py-3 cursor-pointer hover:bg-surface/50 transition-colors"
|
className="flex items-center justify-between px-4 py-3 cursor-pointer hover:bg-surface/50 transition-colors rounded-t-xl"
|
||||||
onClick={() => setExpandedId(expandedId === fund.id ? null : fund.id)}
|
onClick={() => setExpandedId(expandedId === fund.id ? null : fund.id)}
|
||||||
>
|
>
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
|
|||||||
Reference in New Issue
Block a user