mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-22 06:00:07 +03:00
Format
This commit is contained in:
parent
50c61db47c
commit
0c2edba0b5
|
@ -152,4 +152,4 @@ export const POKEMON_NAMES = [
|
||||||
'mew',
|
'mew',
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
export type PokemonName = typeof POKEMON_NAMES[number];
|
export type PokemonName = (typeof POKEMON_NAMES)[number];
|
||||||
|
|
|
@ -293,7 +293,7 @@ function computeRtkQueryRequests(
|
||||||
const [queryCacheKey, queryCache] = queryCacheEntries[i];
|
const [queryCacheKey, queryCache] = queryCacheEntries[i];
|
||||||
const requestId: string =
|
const requestId: string =
|
||||||
type === 'queries'
|
type === 'queries'
|
||||||
? (queryCache as typeof api['queries'][string])?.requestId ?? ''
|
? (queryCache as (typeof api)['queries'][string])?.requestId ?? ''
|
||||||
: queryCacheKey;
|
: queryCacheKey;
|
||||||
if (
|
if (
|
||||||
queryCache &&
|
queryCache &&
|
||||||
|
|
Loading…
Reference in New Issue
Block a user