Change default zap amount
CI / Lint (pull_request) Failing after 8s
CI / Test (pull_request) Failing after 6s

This commit is contained in:
2026-08-20 16:38:04 -06:00
parent 82bc6a424e
commit beda860093
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ function satsToSlider(sats) {
); );
} }
const DEFAULT_SLIDER_POSITION = satsToSlider(1000); const DEFAULT_SLIDER_POSITION = satsToSlider(100);
export default class ZapPhotoModal extends Component { export default class ZapPhotoModal extends Component {
@service nostrZap; @service nostrZap;
@@ -114,8 +114,8 @@ module('Integration | Component | zap-photo-modal', function (hooks) {
); );
assert.strictEqual( assert.strictEqual(
zapSpy.firstCall.args[1], zapSpy.firstCall.args[1],
1_000_000, 100_000,
'zap amount is 1000 sats in millisats' 'zap amount is 100 sats in millisats'
); );
await waitFor('.qr-code-container'); await waitFor('.qr-code-container');