We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac0fceb commit 59314aeCopy full SHA for 59314ae
src/models/api/sponsor.ts
@@ -48,5 +48,5 @@ export type APISponsorLevelWithSponsor = {
48
49
export type APIPatron = {
50
name: string;
51
- message?: string | null;
+ contribution_message?: string | null;
52
};
src/models/sponsor.ts
@@ -189,7 +189,7 @@ export class Patron {
189
static fromAPI(d: APIPatron): Patron {
190
return new Patron({
191
name: d.name,
192
- message: d.message,
+ message: d.contribution_message,
193
});
194
}
195
0 commit comments