From ed0648d0306eca535d90331e4a9b7f611a1f30cd Mon Sep 17 00:00:00 2001 From: Ariq Pradipa Santoso Date: Tue, 19 Aug 2025 07:06:47 +0700 Subject: [PATCH] fix: Replace hardcoded API key with placeholder in TenorApi class --- lib/utils/tenor_api.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/tenor_api.dart b/lib/utils/tenor_api.dart index 93397e362..3c4e01471 100644 --- a/lib/utils/tenor_api.dart +++ b/lib/utils/tenor_api.dart @@ -65,7 +65,7 @@ class TenorApiResponse { class TenorApi { static const String _baseUrl = 'https://tenor.googleapis.com/v2'; static const String _apiKey = - 'AIzaSyC5xwpkbdAnIH4NSyjUwg_t9Huoy19YVH4'; // Test API key from documentation + ''; // Test API key from documentation static const String _clientKey = 'fluffychat_app'; // Client key for integration tracking static const int _limit = 20;