wip: dashboard wiring (real backend) + Docker compose for production
This commit is contained in:
@@ -55,9 +55,11 @@ function Sparkline({ breakdown }: { breakdown: ScoreBreakdown | null }) {
|
||||
);
|
||||
}
|
||||
|
||||
type Props =
|
||||
| { row: InboxClaimRow; accent: Accent; onClick: () => void }
|
||||
| { row: InboxCandidateRow; accent: Accent; onClick: () => void };
|
||||
type Props = {
|
||||
row: InboxClaimRow | InboxCandidateRow;
|
||||
accent: Accent;
|
||||
onClick: () => void;
|
||||
};
|
||||
|
||||
export function InboxRow({ row, accent, onClick }: Props) {
|
||||
const isCandidate = row.kind === "remit";
|
||||
|
||||
Reference in New Issue
Block a user