Is there an easy way for me to comment out the pol...
# dev-frontend
c
Is there an easy way for me to comment out the polling that the webapp does while i’m developing? It’s just kinda hard to read logs right now.
a
you can disable it by deleting these lines. useSubscription(ConnectionResource.listShape(), { workspaceId: config.ui.workspaceId }); useSubscription(JobResource.listShape(), { configId: sourceData.connectionId, configType: "sync" }); useSubscription(JobResource.detailShape(), { id });
c
🎉
thank you!