diff --git a/app/client/src/pages/UserProfile/UserProfileImagePicker.tsx b/app/client/src/pages/UserProfile/UserProfileImagePicker.tsx index 499e5a20c2..09ba40575f 100644 --- a/app/client/src/pages/UserProfile/UserProfileImagePicker.tsx +++ b/app/client/src/pages/UserProfile/UserProfileImagePicker.tsx @@ -7,10 +7,8 @@ import { USER_PHOTO_ASSET_URL } from "constants/userConstants"; import { DisplayImageUpload } from "design-system-old"; import type Uppy from "@uppy/core"; -import { isAirgapped } from "@appsmith/utils/airgapHelpers"; function FormDisplayImage() { - const isAirgappedInstance = isAirgapped(); const [file, setFile] = useState(); const dispatch = useDispatch(); const user = useSelector(getCurrentUser); @@ -55,7 +53,6 @@ function FormDisplayImage() { return ( CSV_FILE_TYPE_REGEX.test(str); type Result = string | Buffer | ArrayBuffer | null; -const isAirgappedInstance = isAirgapped(); - const FilePickerGlobalStyles = createGlobalStyle<{ borderRadius?: string; }>` @@ -611,7 +608,7 @@ class FilePickerWidget extends BaseWidget< closeAfterFinish: true, closeModalOnClickOutside: true, disableStatusBar: false, - disableInformer: isAirgappedInstance, + disableInformer: false, disableThumbnailGenerator: false, disablePageScrollWhenModalOpen: true, proudlyDisplayPoweredByUppy: false,