fix: Style values of the page and default value for telemetry (#11640)

This commit is contained in:
Ankita Kinger 2022-03-07 11:36:34 +05:30 committed by GitHub
parent be5b12b7bb
commit af5483c7c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ export const getConfigsFromEnvVars = (): INJECTED_CONFIGS => {
: false, : false,
disableTelemetry: process.env.APPSMITH_DISABLE_TELEMETRY disableTelemetry: process.env.APPSMITH_DISABLE_TELEMETRY
? process.env.APPSMITH_DISABLE_TELEMETRY.length > 0 ? process.env.APPSMITH_DISABLE_TELEMETRY.length > 0
: true, : false,
segment: { segment: {
apiKey: process.env.REACT_APP_SEGMENT_KEY || "", apiKey: process.env.REACT_APP_SEGMENT_KEY || "",
ceKey: process.env.REACT_APP_SEGMENT_CE_KEY || "", ceKey: process.env.REACT_APP_SEGMENT_CE_KEY || "",

View File

@ -21,7 +21,7 @@ const InputCopyWrapper = styled.div`
align-items: center; align-items: center;
svg { svg {
margin-left: 10px; margin-left: 12px;
cursor: pointer; cursor: pointer;
} }
`; `;

View File

@ -9,7 +9,7 @@ import { Icon, IconSize } from "components/ads";
const AccordionWrapper = styled.div` const AccordionWrapper = styled.div`
margin-top: 40px; margin-top: 40px;
max-width: 634px; max-width: 40rem;
`; `;
const AccordionHeader = styled(StyledLabel)` const AccordionHeader = styled(StyledLabel)`