diff --git a/apps/acf-options-page/src/modal/settings/google-sheets.tsx b/apps/acf-options-page/src/modal/settings/google-sheets.tsx index 81480004..c61c95d1 100644 --- a/apps/acf-options-page/src/modal/settings/google-sheets.tsx +++ b/apps/acf-options-page/src/modal/settings/google-sheets.tsx @@ -1,12 +1,12 @@ import { Alert, Button, Image } from 'react-bootstrap'; -import GoogleSignInLight from '../../assets/btn_google_signin_light_normal_web.png'; +import { GOOGLE_SCOPES } from '@dhruv-techapps/google-oauth'; import GoogleSignInDark from '../../assets/btn_google_signin_dark_normal_web.png'; +import GoogleSignInLight from '../../assets/btn_google_signin_light_normal_web.png'; import { useAppDispatch, useAppSelector } from '../../hooks'; -import { themeSelector } from '../../store/theme.slice'; -import { googleLoginAPI } from '../../store/settings/settings.api'; import { settingsSelector } from '../../store/settings'; -import { GOOGLE_SCOPES } from '@dhruv-techapps/google-oauth'; +import { googleLoginAPI } from '../../store/settings/settings.api'; +import { themeSelector } from '../../store/theme.slice'; function SettingGoogleSheets() { const theme = useAppSelector(themeSelector); @@ -21,17 +21,21 @@ function SettingGoogleSheets() { if (!google || !googleScopes.includes(scope)) { return (
- {['DEV', 'BETA', 'LOCAL'].includes(process.env.NX_VARIANT || '') && ( + {['DEV', 'BETA', 'LOCAL'].includes(process.env.NX_VARIANT || '') ? ( - For DEV and BETA versions only. - To obtain access to the Local Google Sheets, kindly send an email to dhruv.techapps@gmail.com. Please use{' '} - Require access to {process.env.NX_VARIANT} Google sheets as the subject of your email. + Use Stable Versions for Google Sheets Features. + For optimal performance and reliability in Google Sheets, it's recommended to utilize stable versions of its features. + These versions undergo thorough testing to ensure seamless functionality, providing you with a dependable platform for your tasks. By prioritizing stability, you can enhance your + productivity and minimize the risk of encountering unexpected issues. If you need assistance or guidance on leveraging Google Sheets effectively, feel free to reach out for support!. + ) : ( + <> + Connect with Google Sheets + + )} - Connect with Google Sheets -
); }