website cleanup

This commit is contained in:
2025-12-24 21:44:58 +01:00
parent 9b683a59d3
commit d78854a4c6
277 changed files with 6141 additions and 2693 deletions

View File

@@ -9,12 +9,12 @@ export interface PendingRequestDTO {
id: string;
sponsorId: string;
sponsorName: string;
sponsorLogo?: string;
sponsorLogo?: string | undefined;
tier: 'main' | 'secondary';
offeredAmount: number;
currency: string;
formattedAmount: string;
message?: string;
message?: string | undefined;
createdAt: Date;
platformFee: number;
netAmount: number;
@@ -238,4 +238,4 @@ export default function PendingSponsorshipRequests({
</div>
</div>
);
}
}