diff --git a/app/components/zap-photo-modal.gjs b/app/components/zap-photo-modal.gjs index 05c03f6..d01135b 100644 --- a/app/components/zap-photo-modal.gjs +++ b/app/components/zap-photo-modal.gjs @@ -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 { @service nostrZap; diff --git a/tests/integration/components/zap-photo-modal-test.gjs b/tests/integration/components/zap-photo-modal-test.gjs index 13cb8a7..c3c00a5 100644 --- a/tests/integration/components/zap-photo-modal-test.gjs +++ b/tests/integration/components/zap-photo-modal-test.gjs @@ -114,8 +114,8 @@ module('Integration | Component | zap-photo-modal', function (hooks) { ); assert.strictEqual( zapSpy.firstCall.args[1], - 1_000_000, - 'zap amount is 1000 sats in millisats' + 100_000, + 'zap amount is 100 sats in millisats' ); await waitFor('.qr-code-container');