Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/fragments/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
)

_CONTACT_LINKS: tuple[tuple[str, str, str], ...] = (
("discord", "https://discord.gg/UMJduhcqn", "Discord"),
("discord", "https://discord.gg/t6muquAJbm", "Discord"),
("x", "https://x.com/vocahq", "X"),
("mail", "mailto:hello@vocahq.com", "Email"),
)
Expand Down
1 change: 1 addition & 0 deletions tests/test_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def test_about_fragment_has_the_family_surface() -> None:
_assert_about_surface(html)
assert "Beta" in html
assert "Early" not in html
assert "https://discord.gg/t6muquAJbm" in html
assert VERSION in html
assert "<dt>Version</dt>" in html
assert "<dt>Build</dt>" not in html
Expand Down
2 changes: 1 addition & 1 deletion tests/test_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def _assert_about_surface(html: str) -> None:
assert host in html
assert "https://github.com/VocaHQ/vocagateway/issues" in html
assert "Report a bug or idea" in html
assert "https://discord.gg/UMJduhcqn" in html
assert "https://discord.gg/t6muquAJbm" in html
assert "https://x.com/vocahq" in html
assert "mailto:hello@vocahq.com" in html
assert "Discord</a>" in html
Expand Down