Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit f7f0345

Browse files
committed
build(1.0.0): remove devlogs
1 parent c24f3e2 commit f7f0345

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/pages/games-list/index.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,7 @@ const GamesList = (): JSX.Element => {
7676
};
7777

7878
const filteredGames = useMemo(() => {
79-
console.log(status, platform);
80-
8179
let result: Game[] = [];
82-
console.log('beforeFiltering: ', result);
8380

8481
if (status === 'all') {
8582
result = [...nanoList];
@@ -96,8 +93,6 @@ const GamesList = (): JSX.Element => {
9693
return result.sort(dateComparator);
9794
}, [nanoList, status, platform]);
9895

99-
console.log('memo: ', filteredGames);
100-
10196
return (
10297
<>
10398
{loading ? (

0 commit comments

Comments
 (0)