diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-04-23 00:37:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 00:37:46 +0100 |
commit | 49b5d420e6ae7c3c9cfd56f47248b686f5c0128a (patch) | |
tree | 6ac97bf84b9500d081db82753fb2ba5a0a5c7a9f /src/state/queries/tenor.ts | |
parent | 861804629a8a68d8d20d09b5f0358a6b05d2a253 (diff) | |
download | voidsky-49b5d420e6ae7c3c9cfd56f47248b686f5c0128a.tar.zst |
rm country param (#3653)
Diffstat (limited to 'src/state/queries/tenor.ts')
-rw-r--r-- | src/state/queries/tenor.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/state/queries/tenor.ts b/src/state/queries/tenor.ts index 66cfcec6a..80c57479e 100644 --- a/src/state/queries/tenor.ts +++ b/src/state/queries/tenor.ts @@ -65,10 +65,6 @@ function createTenorApi<Input extends object>( if (locale) { params.set('locale', locale.languageTag.replace('-', '_')) - - if (locale.regionCode) { - params.set('country', locale.regionCode) - } } for (const [key, value] of Object.entries(input)) { |