We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda1ef9 commit a140a50Copy full SHA for a140a50
src/app/(authenticated)/profile/connections/page.tsx
@@ -19,11 +19,13 @@ export default async function Connections() {
19
{connections.length > 0 ? (
20
connections.map((c) => <ConnectionTile key={c.to} connection={c} />)
21
) : (
22
- <div>
23
- <p>1. Scan other user's QR-Code.</p>
24
- <p>2. Open user's page.</p>
25
- <p>3. And click on the connect button.</p>
26
- </div>
+ <p className="text-gray-600">
+ 1. Scan the QR code of another user. <br />
+ 2. Visit their profile page.
+ <br />
+ 3. Click on the "Connect" button.
27
28
+ </p>
29
)}
30
</List>
31
</div>
0 commit comments