Skip to content

Commit 4e5012d

Browse files
committed
fix: fix equality operator to strictly equality operator
1 parent 7f4fbf6 commit 4e5012d

File tree

1 file changed

+1
-1
lines changed
  • atcoder-problems-frontend/src/pages/TablePage

1 file changed

+1
-1
lines changed

atcoder-problems-frontend/src/pages/TablePage/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export const TablePage: React.FC<OuterProps> = (props) => {
122122
? "AtCoder Regular Contest"
123123
: activeTab === "AGC"
124124
? "AtCoder Grand Contest"
125-
: activeTab == "PAST"
125+
: activeTab === "PAST"
126126
? "PAST"
127127
: `${activeTab} Contest`
128128
}

0 commit comments

Comments
 (0)