title tag changed
This commit is contained in:
parent
ef59e67451
commit
99910b8c49
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ const Page = ({ params }: { params: { slug: string } }) => {
|
|||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
setPage(data);
|
||||
return (document.title = `${data.title} | SVRJS`);
|
||||
return (document.title = `${data.title} Change Log | SVRJS`);
|
||||
} else {
|
||||
if (response.status === 404) {
|
||||
setNotFound(true);
|
||||
|
|
Loading…
Reference in a new issue