@@ -40,45 +40,45 @@ export const WelcomeModal: React.FunctionComponent<WelcomeModalProps> = ({
4040 closeModal ( ) ;
4141 } , [ closeModal ] ) ;
4242
43- return (
44- < MarketingModal
45- data-testid = "welcome-modal"
46- open = { isOpen }
47- onClose = { close }
48- onButtonClick = { close }
49- title = "Welcome to Compass"
50- buttonText = "Start"
51- showBlob
52- blobPosition = "top right"
53- disclaimer = {
54- networkTraffic ? (
55- < div className = { disclaimer } >
56- To help improve our products, anonymous usage data is collected and
57- sent to MongoDB in accordance with MongoDB's privacy policy.
58- < br />
59- Manage this behaviour on the Compass{ ' ' }
60- < Link
61- data-testid = "open-settings-link"
62- hideExternalIcon
63- className = { link }
64- onClick = { goToSettings }
65- >
66- Settings
67- </ Link > { ' ' }
68- page.
69- </ div >
70- ) : undefined
71- }
72- graphic = { < WelcomeModalImage width = { 156 } height = { 209 } /> }
73- linkText = { '' }
74- darkMode = { darkMode }
75- >
76- < Body >
77- Build aggregation pipelines, optimize queries, analyze schemas,
78- and more. All with the GUI built by - and for - MongoDB.
79- </ Body >
80- </ MarketingModal >
81- ) ;
43+ return < div > hello </ div > ;
44+ // <MarketingModal
45+ // data-testid="welcome-modal"
46+ // open={isOpen}
47+ // onClose={close}
48+ // onButtonClick={close}
49+ // title="Welcome to Compass"
50+ // buttonText="Start"
51+ // showBlob
52+ // blobPosition="top right"
53+ // disclaimer={
54+ // networkTraffic ? (
55+ // <div className={disclaimer}>
56+ // To help improve our products, anonymous usage data is collected and
57+ // sent to MongoDB in accordance with MongoDB's privacy policy.
58+ // <br />
59+ // Manage this behaviour on the Compass{' '}
60+ // <Link
61+ // data-testid="open-settings-link"
62+ // hideExternalIcon
63+ // className={link}
64+ // onClick={goToSettings}
65+ // >
66+ // Settings
67+ // </Link>{' '}
68+ // page.
69+ // </div>
70+ // ) : undefined
71+ // }
72+ // graphic={<WelcomeModalImage width={156} height={209} />}
73+ // linkText={''}
74+ // darkMode={darkMode}
75+ // >
76+ // <Body>
77+ // Build aggregation pipelines, optimize queries, analyze schemas,
78+ // and more. All with the GUI built by - and for - MongoDB.
79+ // </Body>
80+ // </MarketingModal>
81+ // );
8282} ;
8383
8484export default withPreferences ( WelcomeModal , [ 'networkTraffic' ] ) ;
0 commit comments