Skip to content

Commit 219baa9

Browse files
committed
Format
1 parent 9a0bc17 commit 219baa9

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

packages/documentation/src/content/docs/integration/requirements/webhook-events.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ The incoming payment will either complete or expire.
262262
<summary>Expand for event sequences</summary>
263263
{' '}
264264

265-
<Badge text='Single-phase transfer' variant='tip' size='medium' /> An incoming payment
266-
of $10 was completed.
265+
<Badge text='Single-phase transfer' variant='tip' size='medium' /> An incoming
266+
payment of $10 was completed.
267267

268268
<Mermaid
269269
graph={`sequenceDiagram
@@ -279,8 +279,8 @@ of $10 was completed.
279279

280280
{' '}
281281

282-
<Badge text='Two-phase transfer' variant='tip' size='medium' /> An incoming payment
283-
of $10 was completed.
282+
<Badge text='Two-phase transfer' variant='tip' size='medium' /> An incoming
283+
payment of $10 was completed.
284284

285285
<Mermaid
286286
graph={`sequenceDiagram
@@ -375,8 +375,9 @@ If the sender has insufficient funds or if the payment should otherwise not be f
375375
<summary>Expand for event sequences</summary>
376376
{' '}
377377

378-
<Badge text='Single-phase transfer' variant='tip' size='medium' /> An outgoing payment
379-
for \$12 is complete. \$11.50 was sent. You choose to keep \$0.50 as a service fee.
378+
<Badge text='Single-phase transfer' variant='tip' size='medium' /> An outgoing
379+
payment for \$12 is complete. \$11.50 was sent. You choose to keep \$0.50 as a
380+
service fee.
380381

381382
<Mermaid
382383
graph={`sequenceDiagram

packages/documentation/src/content/docs/resources/get-involved.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ For more details about spec contributions and development, visit <LinkOut href="
1414

1515
## Coding
1616

17-
- <LinkOut href='https://github.com/interledger/rafiki'>Contribute</LinkOut> to Rafiki
18-
coding or testing.
17+
- <LinkOut href='https://github.com/interledger/rafiki'>Contribute</LinkOut> to
18+
Rafiki coding or testing.
1919

2020
## Community and hackathons
2121

packages/frontend/app/routes/payments.incoming.$incomingPaymentId.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ export default function ViewIncomingPaymentPage() {
6767
<div className='col-span-1 pt-3'>
6868
<h3 className='text-lg font-medium'>General Information</h3>
6969
<p className='text-sm'>
70-
Created at {new Date(incomingPayment.createdAt).toLocaleString()}{' '}
70+
Created at{' '}
71+
{new Date(incomingPayment.createdAt).toLocaleString()}{' '}
7172
</p>
7273
{new Date(expiresAtLocale) > new Date() && (
7374
<p className='text-sm mb-2'>Expires at {expiresAtLocale} </p>

packages/frontend/app/routes/payments.outgoing.$outgoingPaymentId.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ export default function ViewOutgoingPaymentPage() {
7373
<div className='col-span-1 pt-3'>
7474
<h3 className='text-lg font-medium'>General Information</h3>
7575
<p className='text-sm mb-2'>
76-
Created at {new Date(outgoingPayment.createdAt).toLocaleString()}{' '}
76+
Created at{' '}
77+
{new Date(outgoingPayment.createdAt).toLocaleString()}{' '}
7778
</p>
7879
</div>
7980
<div className='md:col-span-2 bg-white rounded-md shadow-md'>

0 commit comments

Comments
 (0)