Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutaj committed Jul 27, 2023
1 parent d2471b8 commit 12b1a43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import "./globals.css"
const inter = Inter({ subsets: ["latin"] })

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "AtCoder QQ",
description: "AtCoder コンテストの順位を、最高順位が含まれる形で表形式で表示します。",
}

export default function RootLayout({
Expand Down
1 change: 0 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ const getRankingText = (num: number) => {
case '13':
return `${numStr}th`;
default:
console.log(numStr, numStr.slice(-1))
switch (numStr.slice(-1)) {
case '1':
return `${numStr}st`;
Expand Down

0 comments on commit 12b1a43

Please sign in to comment.