Fixed header resizing (#7787)

This commit is contained in:
arunvjn 2021-09-24 12:43:36 +05:30 committed by GitHub
parent c84844e905
commit 7159119329
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,6 @@ import { EditorSaveIndicator } from "./EditorSaveIndicator";
import getFeatureFlags from "utils/featureFlags";
import { getIsInOnboarding } from "selectors/onboardingSelectors";
import { retryPromise } from "utils/AppsmithUtils";
import Skeleton from "components/utils/Skeleton";
const HeaderWrapper = styled(StyledHeader)`
width: 100%;
@ -350,7 +349,7 @@ export function EditorHeader(props: EditorHeaderProps) {
)}
</HeaderSection>
{props.inOnboarding && <OnboardingHelper />}
<Suspense fallback={<Skeleton />}>
<Suspense fallback={<span />}>
<GlobalSearch />
</Suspense>
{isSnipingMode && (