fix: Toast component props
Some checks are pending
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions
CI / Backend Lint (push) Waiting to run
CI / Backend Tests (push) Blocked by required conditions
CI / Docker Build (push) Blocked by required conditions
CI / Security Scan (push) Waiting to run
Deploy / Build & Push Images (push) Waiting to run
Deploy / Deploy to Server (push) Blocked by required conditions
Deploy / Notify (push) Blocked by required conditions

This commit is contained in:
2025-12-14 22:46:04 +01:00
parent 4efe1fdd4f
commit 988e1645c5

View File

@ -1407,7 +1407,7 @@ export default function PortfolioPage() {
/>
)}
<Toast toast={toast} onHide={hideToast} />
{toast && <Toast message={toast.message} type={toast.type} onClose={hideToast} />}
</div>
)
}