Skip to content

Commit 6e2db25

Browse files
committed
(fix)Remove dummy key from fonts viewer
1 parent f6acaf2 commit 6e2db25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpenSourceToolkit.NET/ViewModels/Tools/FontsViewerToolViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ private async Task LoadFontsAsync()
11631163
{
11641164
// Use Google Fonts Developer API (free, no key required for font list)
11651165
// This URL returns all font families with metadata
1166-
var apiUrl = "https://www.googleapis.com/webfonts/v1/webfonts?sort=popularity&key=AIzaSyBwIX97bVWr3-6AIUvGkcNnmFgirefZ6Sw";
1166+
var apiUrl = "https://www.googleapis.com/webfonts/v1/webfonts?sort=popularity&key=";
11671167

11681168
var response = await _httpClient.GetStringAsync(apiUrl);
11691169
var jsonDoc = JsonDocument.Parse(response);

0 commit comments

Comments
 (0)