This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch scarf-pixel
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/scarf-pixel by this push:
new 4ae3e951eb linting
4ae3e951eb is described below
commit 4ae3e951eb8c7342bc5bbb7cdf74d3e0da7da83d
Author: Evan Rusackas <[email protected]>
AuthorDate: Mon Nov 27 10:57:59 2023 -0700
linting
---
superset-frontend/src/components/TelemetryPixel/index.tsx | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/superset-frontend/src/components/TelemetryPixel/index.tsx
b/superset-frontend/src/components/TelemetryPixel/index.tsx
index 93a165f7b4..5b43ba9cd5 100644
--- a/superset-frontend/src/components/TelemetryPixel/index.tsx
+++ b/superset-frontend/src/components/TelemetryPixel/index.tsx
@@ -46,7 +46,12 @@ const TelemetryPixel = ({
const pixelPath =
`https://apachesuperset.gateway.scarf.sh/pixel/${pixelId}/${version}/${sha}/${build}`;
return isFeatureEnabled(FeatureFlag.ENABLE_TELEMETRY) ? (
// eslint-disable-next-line jsx-a11y/alt-text
- <img referrerPolicy="no-referrer-when-downgrade" src={pixelPath} width="0"
height="0" />
+ <img
+ referrerPolicy="no-referrer-when-downgrade"
+ src={pixelPath}
+ width="0"
+ height="0"
+ />
) : null;
};
export default TelemetryPixel;