Skip to content

Commit a140a50

Browse files
committed
Update connection steps text
1 parent bda1ef9 commit a140a50

File tree

1 file changed

+7
-5
lines changed
  • src/app/(authenticated)/profile/connections

1 file changed

+7
-5
lines changed

src/app/(authenticated)/profile/connections/page.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ export default async function Connections() {
1919
{connections.length > 0 ? (
2020
connections.map((c) => <ConnectionTile key={c.to} connection={c} />)
2121
) : (
22-
<div>
23-
<p>1. Scan other user&apos;s QR-Code.</p>
24-
<p>2. Open user&apos;s page.</p>
25-
<p>3. And click on the connect button.</p>
26-
</div>
22+
<p className="text-gray-600">
23+
1. Scan the QR code of another user. <br />
24+
2. Visit their profile page.
25+
<br />
26+
3. Click on the "Connect" button.
27+
<br />
28+
</p>
2729
)}
2830
</List>
2931
</div>

0 commit comments

Comments
 (0)