Skip to content

Commit dd79a0b

Browse files
committed
fix: rebase issue
1 parent 4ecb095 commit dd79a0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/federation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import { persistAccount } from "../federation/account";
1616
import { isPost, persistPost } from "../federation/post";
1717
import { loginRequired } from "../login";
1818
import { accountOwners, accounts, instances, relays } from "../schema";
19-
import { isUuid } from "../uuid";
2019

2120
const data = new Hono();
2221

@@ -310,11 +309,12 @@ data.post("/relay", async (c) => {
310309
rsaPublicKeyJwk: await exportJwk(rsaKeyPair.publicKey),
311310
ed25519PrivateKeyJwk: await exportJwk(ed25519KeyPair.privateKey),
312311
ed25519PublicKeyJwk: await exportJwk(ed25519KeyPair.publicKey),
313-
bio: "",
312+
bio: "This account is an internal account used by Hollo. It is used to follow remote relays.",
314313
language: "en",
315314
// TODO: Which visibility should be set?
316315
visibility: "public",
317316
discoverable: false,
317+
themeColor: "pink",
318318
})
319319
.onConflictDoNothing()
320320
.returning();

0 commit comments

Comments
 (0)