Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ The `createWidget` function accepts an object with the following properties:
amount?: number;
/**
* Minimum donation amount
* @default 5
* @default 10
*/
minDonationAmount?: number;
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/donate-button-v4/src/helpers/optionsTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const defaults: Partial<WidgetConfig> = {
show: false,
addAmounts: [10, 50, 100],
defaultFrequency: DonationFrequency.Unselected,
minDonationAmount: 5,
minDonationAmount: 10,
primaryColor: '#018669',
showGiftCardOption: false,
redeemGiftCardInFlow: false,
Expand Down