Skip to content

Commit

Permalink
fix: ensure consistent and recognizable title format for the reader p…
Browse files Browse the repository at this point in the history
…rofile
  • Loading branch information
akhileshthite committed May 17, 2024
1 parent 50e05a8 commit bead186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions profile.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>User Profile</title>
<title>Reader Profile</title>
<style>
@import url("./actor-profile.css");
@import url("./common.css");
Expand All @@ -23,7 +23,7 @@
</div>
<script>
document.addEventListener('usernameUpdated', (event) => {
document.title = `@${event.detail.username}`;
document.title += ` @${event.detail.username}`;
});

// Get actor url
Expand Down

0 comments on commit bead186

Please sign in to comment.