diff --git a/packages/nintendo-switch-eshop/src/nintendo-switch-eshop.ts b/packages/nintendo-switch-eshop/src/nintendo-switch-eshop.ts index deef5f2d..41a3d433 100644 --- a/packages/nintendo-switch-eshop/src/nintendo-switch-eshop.ts +++ b/packages/nintendo-switch-eshop/src/nintendo-switch-eshop.ts @@ -86,7 +86,7 @@ const isStringArray = (array: string | string[]): array is string[] => { * @returns {Promise} Promise containing all the games * @method */ -export const getGamesAmerica = async (options: USRequestOptions = {}, offset = 0, games: GameUS[] = []): Promise => { +export const getGamesAmerica = async (options: USRequestOptions = {}, offset = 0, games: GameUS[] = []): Promise => { /* eslint-disable */ const limit = hasProp(options, 'limit') ? options.limit : US_GAME_LIST_LIMIT; const shopProp = hasProp(options, 'shop') ? options.shop : 'ncom';