Skip to content

Commit e9b703e

Browse files
committed
fix: linting
1 parent 7347a18 commit e9b703e

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

src/components/home/DepositDialog.vue

+10-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
</p>
1111
<p
1212
class="deposit-dialog__custody-notice deposit-dialog__custody-notice--bold"
13-
>Only you have access to these funds.</p>
13+
>
14+
Only you have access to these funds.
15+
</p>
1416
<AmountInput
1517
class="deposit-dialog__amount-input"
1618
:amount="depositAmount"
@@ -21,12 +23,17 @@
2123
/>
2224
</main>
2325
<footer class="deposit-dialog__actions">
24-
<m-button class="deposit-dialog__actions__cancel-button" @click="cancelDeposit">Cancel</m-button>
26+
<m-button
27+
class="deposit-dialog__actions__cancel-button"
28+
@click="cancelDeposit"
29+
>Cancel</m-button
30+
>
2531
<m-button
2632
class="deposit-dialog__actions__accept-button"
2733
raised
2834
@click="acceptDeposit"
29-
>Deposit</m-button>
35+
>Deposit</m-button
36+
>
3037
</footer>
3138
</section>
3239
</section>

src/components/home/WithdrawDialog.vue

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,17 @@
1010
</p>
1111
</main>
1212
<footer class="withdraw-dialog__actions">
13-
<m-button class="withdraw-dialog__actions__cancel-button" @click="cancelWithdrawal">Cancel</m-button>
13+
<m-button
14+
class="withdraw-dialog__actions__cancel-button"
15+
@click="cancelWithdrawal"
16+
>Cancel</m-button
17+
>
1418
<m-button
1519
class="withdraw-dialog__actions__accept-button"
1620
raised
1721
@click="startWithdrawal"
18-
>Withdraw</m-button>
22+
>Withdraw</m-button
23+
>
1924
</footer>
2025
</section>
2126
</section>

0 commit comments

Comments
 (0)