diff --git a/packages/app/src/app/pages/Sandbox/Editor/Workspace/Dependencies/index.tsx b/packages/app/src/app/pages/Sandbox/Editor/Workspace/Dependencies/index.tsx
index 4df1a559c89..194fb574cb5 100644
--- a/packages/app/src/app/pages/Sandbox/Editor/Workspace/Dependencies/index.tsx
+++ b/packages/app/src/app/pages/Sandbox/Editor/Workspace/Dependencies/index.tsx
@@ -107,27 +107,33 @@ export const Dependencies: FunctionComponent = () => {
}
/>
))}
- Google Fonts
-
- workspace.externalResourceAdded({
- resource,
- })
- }
- addedResource={fonts}
- />
- {fonts.map(resource => (
-
- workspace.externalResourceRemoved({
- resource,
- })
- }
- />
- ))}
+ {/* Disable this until we have a way to not reach the Google API limit */}
+ {false && (
+ <>
+ Google Fonts
+
+
+ workspace.externalResourceAdded({
+ resource,
+ })
+ }
+ addedResource={fonts}
+ />
+ {fonts.map(resource => (
+
+ workspace.externalResourceRemoved({
+ resource,
+ })
+ }
+ />
+ ))}
+ >
+ )}
)}