From 96cfb385afd7f67d9830912062a150b43df78057 Mon Sep 17 00:00:00 2001 From: Bernd Bindreiter Date: Sun, 19 Nov 2023 10:51:31 +0100 Subject: [PATCH] Correct imported tag in GameFilter --- src/lichess/interfaces/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lichess/interfaces/user.ts b/src/lichess/interfaces/user.ts index 3759b07647..88a13cd273 100644 --- a/src/lichess/interfaces/user.ts +++ b/src/lichess/interfaces/user.ts @@ -1,7 +1,7 @@ import { Profile } from '~/session' import { GameSource, GameStatus, ClockData, Opening } from './game' -export type GameFilter = 'all' | 'rated' | 'win' | 'loss' | 'draw' | 'bookmark' | 'me' | 'import' | 'playing' +export type GameFilter = 'all' | 'rated' | 'win' | 'loss' | 'draw' | 'bookmark' | 'me' | 'imported' | 'playing' export interface UserGamesCount { readonly all: number