diff --git a/src/components/Connection/Connection.spec.tsx b/src/components/Connection/Connection.spec.tsx
index ba59c476150e5239a40ca42fe343f9305220116f..0eebac9db1516da621ea572c83853caaf9b4ec7b 100644
--- a/src/components/Connection/Connection.spec.tsx
+++ b/src/components/Connection/Connection.spec.tsx
@@ -1,32 +1,30 @@
+import { render } from '@testing-library/react'
 import Connection from 'components/Connection/Connection'
 import { FluidType } from 'enums'
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
 import React from 'react'
 import { Provider } from 'react-redux'
 import { createMockEcolyoStore } from 'tests/__mocks__/store'
 
 jest.mock('components/Connection/EPGLConnect/EpglInit', () => 'mock-EpglInit')
-
 jest.mock('components/Connection/GRDFConnect/GrdfInit', () => 'mock-GrdfInit')
 
 describe('Connection component test', () => {
   const store = createMockEcolyoStore()
   it('should call GrdfInit', () => {
-    const wrapper = mount(
+    const { container } = render(
       <Provider store={store}>
         <Connection fluidType={FluidType.GAS} />
       </Provider>
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
 
   it('should call EpglInit', () => {
-    const wrapper = mount(
+    const { container } = render(
       <Provider store={store}>
         <Connection fluidType={FluidType.WATER} />
       </Provider>
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
 })
diff --git a/src/components/Connection/ExpiredConsentModal/ExpiredConsentModal.spec.tsx b/src/components/Connection/ExpiredConsentModal/ExpiredConsentModal.spec.tsx
index de738abe48d8e42a4f067e58b9190c7e04879028..ab0df6dcc0593ce40246251ac0df36376d72b145 100644
--- a/src/components/Connection/ExpiredConsentModal/ExpiredConsentModal.spec.tsx
+++ b/src/components/Connection/ExpiredConsentModal/ExpiredConsentModal.spec.tsx
@@ -1,7 +1,6 @@
-import { Button } from '@material-ui/core'
+import { render, screen } from '@testing-library/react'
+import { userEvent } from '@testing-library/user-event'
 import { FluidType } from 'enums'
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
 import React from 'react'
 import { Provider } from 'react-redux'
 import * as storeHooks from 'store/hooks'
@@ -24,7 +23,7 @@ describe('ExpiredConsentModal component', () => {
     jest.clearAllMocks()
   })
   it('should be rendered correctly', () => {
-    const component = mount(
+    const { container } = render(
       <Provider store={store}>
         <ExpiredConsentModal
           open={true}
@@ -34,10 +33,10 @@ describe('ExpiredConsentModal component', () => {
         />
       </Provider>
     )
-    expect(toJson(component)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
-  it('should launch the update consent process for GRDF', () => {
-    const component = mount(
+  it('should launch the update consent process for GRDF', async () => {
+    render(
       <Provider store={store}>
         <ExpiredConsentModal
           open={true}
@@ -47,15 +46,17 @@ describe('ExpiredConsentModal component', () => {
         />
       </Provider>
     )
-    component.find(Button).at(1).simulate('click')
+    await userEvent.click(
+      screen.getByRole('button', { name: 'consent_outdated.go' })
+    )
     expect(mockAppDispatch).toHaveBeenCalledTimes(1)
     expect(mockedNavigate).toHaveBeenCalledTimes(1)
   })
-  it('should launch the update consent process for Enedis', () => {
+  it('should launch the update consent process for Enedis', async () => {
     const store = createMockEcolyoStore({
       global: { fluidStatus: fluidStatusConnectedData },
     })
-    const component = mount(
+    render(
       <Provider store={store}>
         <ExpiredConsentModal
           open={true}
@@ -65,12 +66,14 @@ describe('ExpiredConsentModal component', () => {
         />
       </Provider>
     )
-    component.find(Button).at(1).simulate('click')
+    await userEvent.click(
+      screen.getByRole('button', { name: 'consent_outdated.go' })
+    )
     expect(mockAppDispatch).toHaveBeenCalledTimes(1)
     expect(mockedNavigate).toHaveBeenCalledTimes(1)
   })
-  it('should click on close modal', () => {
-    const component = mount(
+  it('should click on close modal', async () => {
+    render(
       <Provider store={store}>
         <ExpiredConsentModal
           open={true}
@@ -80,7 +83,9 @@ describe('ExpiredConsentModal component', () => {
         />
       </Provider>
     )
-    component.find(Button).at(0).simulate('click')
+    await userEvent.click(
+      screen.getByRole('button', { name: 'consent_outdated.later' })
+    )
     expect(mockHandleCloseClick).toHaveBeenCalled()
   })
 })
diff --git a/src/components/Connection/ExpiredConsentModal/__snapshots__/ExpiredConsentModal.spec.tsx.snap b/src/components/Connection/ExpiredConsentModal/__snapshots__/ExpiredConsentModal.spec.tsx.snap
index f1ff5a23d2181ea28a56a76fabd38ddabd670b36..f600c7c130db6ca9dff8c4088724c93395a0a3d3 100644
--- a/src/components/Connection/ExpiredConsentModal/__snapshots__/ExpiredConsentModal.spec.tsx.snap
+++ b/src/components/Connection/ExpiredConsentModal/__snapshots__/ExpiredConsentModal.spec.tsx.snap
@@ -1,1170 +1,7 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`ExpiredConsentModal component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <ExpiredConsentModal
-    fluidType={0}
-    handleCloseClick={[MockFunction]}
-    open={true}
-    toggleModal={[MockFunction]}
-  >
-    <WithStyles(ForwardRef(Dialog))
-      aria-labelledby="accessibility-title"
-      classes={
-        Object {
-          "paper": "modal-paper",
-          "root": "modal-root",
-        }
-      }
-      onClose={[MockFunction]}
-      open={true}
-    >
-      <ForwardRef(Dialog)
-        aria-labelledby="accessibility-title"
-        classes={
-          Object {
-            "container": "MuiDialog-container",
-            "paper": "MuiDialog-paper modal-paper",
-            "paperFullScreen": "MuiDialog-paperFullScreen",
-            "paperFullWidth": "MuiDialog-paperFullWidth",
-            "paperScrollBody": "MuiDialog-paperScrollBody",
-            "paperScrollPaper": "MuiDialog-paperScrollPaper",
-            "paperWidthFalse": "MuiDialog-paperWidthFalse",
-            "paperWidthLg": "MuiDialog-paperWidthLg",
-            "paperWidthMd": "MuiDialog-paperWidthMd",
-            "paperWidthSm": "MuiDialog-paperWidthSm",
-            "paperWidthXl": "MuiDialog-paperWidthXl",
-            "paperWidthXs": "MuiDialog-paperWidthXs",
-            "root": "MuiDialog-root modal-root",
-            "scrollBody": "MuiDialog-scrollBody",
-            "scrollPaper": "MuiDialog-scrollPaper",
-          }
-        }
-        onClose={[MockFunction]}
-        open={true}
-      >
-        <ForwardRef(Modal)
-          BackdropComponent={
-            Object {
-              "$$typeof": Symbol(react.forward_ref),
-              "Naked": Object {
-                "$$typeof": Symbol(react.forward_ref),
-                "propTypes": Object {
-                  "children": [Function],
-                  "className": [Function],
-                  "classes": [Function],
-                  "invisible": [Function],
-                  "open": [Function],
-                  "transitionDuration": [Function],
-                },
-                "render": [Function],
-              },
-              "displayName": "WithStyles(ForwardRef(Backdrop))",
-              "options": Object {
-                "defaultTheme": Object {
-                  "breakpoints": Object {
-                    "between": [Function],
-                    "down": [Function],
-                    "keys": Array [
-                      "xs",
-                      "sm",
-                      "md",
-                      "lg",
-                      "xl",
-                    ],
-                    "only": [Function],
-                    "up": [Function],
-                    "values": Object {
-                      "lg": 1280,
-                      "md": 960,
-                      "sm": 600,
-                      "xl": 1920,
-                      "xs": 0,
-                    },
-                    "width": [Function],
-                  },
-                  "direction": "ltr",
-                  "mixins": Object {
-                    "gutters": [Function],
-                    "toolbar": Object {
-                      "@media (min-width:0px) and (orientation: landscape)": Object {
-                        "minHeight": 48,
-                      },
-                      "@media (min-width:600px)": Object {
-                        "minHeight": 64,
-                      },
-                      "minHeight": 56,
-                    },
-                  },
-                  "overrides": Object {},
-                  "palette": Object {
-                    "action": Object {
-                      "activatedOpacity": 0.12,
-                      "active": "rgba(0, 0, 0, 0.54)",
-                      "disabled": "rgba(0, 0, 0, 0.26)",
-                      "disabledBackground": "rgba(0, 0, 0, 0.12)",
-                      "disabledOpacity": 0.38,
-                      "focus": "rgba(0, 0, 0, 0.12)",
-                      "focusOpacity": 0.12,
-                      "hover": "rgba(0, 0, 0, 0.04)",
-                      "hoverOpacity": 0.04,
-                      "selected": "rgba(0, 0, 0, 0.08)",
-                      "selectedOpacity": 0.08,
-                    },
-                    "augmentColor": [Function],
-                    "background": Object {
-                      "default": "#fafafa",
-                      "paper": "#fff",
-                    },
-                    "common": Object {
-                      "black": "#000",
-                      "white": "#fff",
-                    },
-                    "contrastThreshold": 3,
-                    "divider": "rgba(0, 0, 0, 0.12)",
-                    "error": Object {
-                      "contrastText": "#fff",
-                      "dark": "#d32f2f",
-                      "light": "#e57373",
-                      "main": "#f44336",
-                    },
-                    "getContrastText": [Function],
-                    "grey": Object {
-                      "100": "#f5f5f5",
-                      "200": "#eeeeee",
-                      "300": "#e0e0e0",
-                      "400": "#bdbdbd",
-                      "50": "#fafafa",
-                      "500": "#9e9e9e",
-                      "600": "#757575",
-                      "700": "#616161",
-                      "800": "#424242",
-                      "900": "#212121",
-                      "A100": "#d5d5d5",
-                      "A200": "#aaaaaa",
-                      "A400": "#303030",
-                      "A700": "#616161",
-                    },
-                    "info": Object {
-                      "contrastText": "#fff",
-                      "dark": "#1976d2",
-                      "light": "#64b5f6",
-                      "main": "#2196f3",
-                    },
-                    "primary": Object {
-                      "contrastText": "#fff",
-                      "dark": "#303f9f",
-                      "light": "#7986cb",
-                      "main": "#3f51b5",
-                    },
-                    "secondary": Object {
-                      "contrastText": "#fff",
-                      "dark": "#c51162",
-                      "light": "#ff4081",
-                      "main": "#f50057",
-                    },
-                    "success": Object {
-                      "contrastText": "rgba(0, 0, 0, 0.87)",
-                      "dark": "#388e3c",
-                      "light": "#81c784",
-                      "main": "#4caf50",
-                    },
-                    "text": Object {
-                      "disabled": "rgba(0, 0, 0, 0.38)",
-                      "hint": "rgba(0, 0, 0, 0.38)",
-                      "primary": "rgba(0, 0, 0, 0.87)",
-                      "secondary": "rgba(0, 0, 0, 0.54)",
-                    },
-                    "tonalOffset": 0.2,
-                    "type": "light",
-                    "warning": Object {
-                      "contrastText": "rgba(0, 0, 0, 0.87)",
-                      "dark": "#f57c00",
-                      "light": "#ffb74d",
-                      "main": "#ff9800",
-                    },
-                  },
-                  "props": Object {},
-                  "shadows": Array [
-                    "none",
-                    "0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12)",
-                    "0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)",
-                    "0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)",
-                    "0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)",
-                    "0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)",
-                    "0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)",
-                    "0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)",
-                    "0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)",
-                    "0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)",
-                    "0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)",
-                    "0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)",
-                    "0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)",
-                    "0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)",
-                    "0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)",
-                    "0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)",
-                    "0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)",
-                    "0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)",
-                    "0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)",
-                    "0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)",
-                    "0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)",
-                  ],
-                  "shape": Object {
-                    "borderRadius": 4,
-                  },
-                  "spacing": [Function],
-                  "transitions": Object {
-                    "create": [Function],
-                    "duration": Object {
-                      "complex": 375,
-                      "enteringScreen": 225,
-                      "leavingScreen": 195,
-                      "short": 250,
-                      "shorter": 200,
-                      "shortest": 150,
-                      "standard": 300,
-                    },
-                    "easing": Object {
-                      "easeIn": "cubic-bezier(0.4, 0, 1, 1)",
-                      "easeInOut": "cubic-bezier(0.4, 0, 0.2, 1)",
-                      "easeOut": "cubic-bezier(0.0, 0, 0.2, 1)",
-                      "sharp": "cubic-bezier(0.4, 0, 0.6, 1)",
-                    },
-                    "getAutoHeightDuration": [Function],
-                  },
-                  "typography": Object {
-                    "body1": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.00938em",
-                      "lineHeight": 1.5,
-                    },
-                    "body2": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.875rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.01071em",
-                      "lineHeight": 1.43,
-                    },
-                    "button": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.875rem",
-                      "fontWeight": 500,
-                      "letterSpacing": "0.02857em",
-                      "lineHeight": 1.75,
-                      "textTransform": "uppercase",
-                    },
-                    "caption": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.75rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.03333em",
-                      "lineHeight": 1.66,
-                    },
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": 14,
-                    "fontWeightBold": 700,
-                    "fontWeightLight": 300,
-                    "fontWeightMedium": 500,
-                    "fontWeightRegular": 400,
-                    "h1": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "6rem",
-                      "fontWeight": 300,
-                      "letterSpacing": "-0.01562em",
-                      "lineHeight": 1.167,
-                    },
-                    "h2": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "3.75rem",
-                      "fontWeight": 300,
-                      "letterSpacing": "-0.00833em",
-                      "lineHeight": 1.2,
-                    },
-                    "h3": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "3rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0em",
-                      "lineHeight": 1.167,
-                    },
-                    "h4": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "2.125rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.00735em",
-                      "lineHeight": 1.235,
-                    },
-                    "h5": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1.5rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0em",
-                      "lineHeight": 1.334,
-                    },
-                    "h6": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1.25rem",
-                      "fontWeight": 500,
-                      "letterSpacing": "0.0075em",
-                      "lineHeight": 1.6,
-                    },
-                    "htmlFontSize": 16,
-                    "overline": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.75rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.08333em",
-                      "lineHeight": 2.66,
-                      "textTransform": "uppercase",
-                    },
-                    "pxToRem": [Function],
-                    "round": [Function],
-                    "subtitle1": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.00938em",
-                      "lineHeight": 1.75,
-                    },
-                    "subtitle2": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.875rem",
-                      "fontWeight": 500,
-                      "letterSpacing": "0.00714em",
-                      "lineHeight": 1.57,
-                    },
-                  },
-                  "zIndex": Object {
-                    "appBar": 1100,
-                    "drawer": 1200,
-                    "mobileStepper": 1000,
-                    "modal": 1300,
-                    "snackbar": 1400,
-                    "speedDial": 1050,
-                    "tooltip": 1500,
-                  },
-                },
-                "name": "MuiBackdrop",
-              },
-              "propTypes": Object {
-                "classes": [Function],
-                "innerRef": [Function],
-              },
-              "render": [Function],
-              "useStyles": [Function],
-            }
-          }
-          BackdropProps={
-            Object {
-              "transitionDuration": Object {
-                "enter": 225,
-                "exit": 195,
-              },
-            }
-          }
-          className="MuiDialog-root modal-root"
-          closeAfterTransition={true}
-          disableEscapeKeyDown={false}
-          onClose={[MockFunction]}
-          open={true}
-        >
-          <ForwardRef(Portal)
-            disablePortal={false}
-          >
-            <Portal
-              containerInfo={
-                <body
-                  style="padding-right: 0px; overflow: hidden;"
-                >
-                  <div
-                    class="MuiDialog-root modal-root"
-                    role="presentation"
-                    style="position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;"
-                  >
-                    <div
-                      aria-hidden="true"
-                      class="MuiBackdrop-root"
-                      style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
-                    />
-                    <div
-                      data-test="sentinelStart"
-                      tabindex="0"
-                    />
-                    <div
-                      class="MuiDialog-container MuiDialog-scrollPaper"
-                      role="none presentation"
-                      style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
-                      tabindex="-1"
-                    >
-                      <div
-                        aria-labelledby="accessibility-title"
-                        class="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
-                        role="dialog"
-                      >
-                        <div
-                          id="accessibility-title"
-                        >
-                          consumption_visualizer.modal.window_title
-                        </div>
-                        <button
-                          aria-label="consumption_visualizer.modal.close"
-                          class="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
-                          tabindex="0"
-                          type="button"
-                        >
-                          <span
-                            class="MuiIconButton-label"
-                          >
-                            <svg
-                              class="styles__icon___23x3R"
-                              height="16"
-                              width="16"
-                            >
-                              <use
-                                xlink:href="#test-file-stub"
-                              />
-                            </svg>
-                          </span>
-                          <span
-                            class="MuiTouchRipple-root"
-                          />
-                        </button>
-                        <div
-                          class="expired-consent-modal"
-                        >
-                          <div
-                            class="icon-main"
-                          >
-                            <svg
-                              class="styles__icon___23x3R"
-                              height="135"
-                              width="135"
-                            >
-                              <use
-                                xlink:href="#test-file-stub"
-                              />
-                            </svg>
-                          </div>
-                          <div
-                            class="text-20-bold title electricity"
-                          >
-                            consent_outdated.title.0
-                          </div>
-                          <div>
-                            consent_outdated.text1.0
-                          </div>
-                          <div
-                            class="text-16-bold"
-                          >
-                            consent_outdated.text2.0
-                          </div>
-                          <div
-                            class="buttons"
-                          >
-                            <button
-                              aria-label="consent_outdated.later"
-                              class="MuiButtonBase-root MuiButton-root MuiButton-text btnSecondary"
-                              tabindex="0"
-                              type="button"
-                            >
-                              <span
-                                class="MuiButton-label"
-                              >
-                                consent_outdated.no
-                              </span>
-                              <span
-                                class="MuiTouchRipple-root"
-                              />
-                            </button>
-                            <button
-                              aria-label="consent_outdated.go"
-                              class="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                              tabindex="0"
-                              type="button"
-                            >
-                              <span
-                                class="MuiButton-label"
-                              >
-                                consent_outdated.yes
-                              </span>
-                              <span
-                                class="MuiTouchRipple-root"
-                              />
-                            </button>
-                          </div>
-                        </div>
-                      </div>
-                    </div>
-                    <div
-                      data-test="sentinelEnd"
-                      tabindex="0"
-                    />
-                  </div>
-                </body>
-              }
-            >
-              <div
-                className="MuiDialog-root modal-root"
-                onKeyDown={[Function]}
-                role="presentation"
-                style={
-                  Object {
-                    "bottom": 0,
-                    "left": 0,
-                    "position": "fixed",
-                    "right": 0,
-                    "top": 0,
-                    "zIndex": 1300,
-                  }
-                }
-              >
-                <WithStyles(ForwardRef(Backdrop))
-                  onClick={[Function]}
-                  open={true}
-                  transitionDuration={
-                    Object {
-                      "enter": 225,
-                      "exit": 195,
-                    }
-                  }
-                >
-                  <ForwardRef(Backdrop)
-                    classes={
-                      Object {
-                        "invisible": "MuiBackdrop-invisible",
-                        "root": "MuiBackdrop-root",
-                      }
-                    }
-                    onClick={[Function]}
-                    open={true}
-                    transitionDuration={
-                      Object {
-                        "enter": 225,
-                        "exit": 195,
-                      }
-                    }
-                  >
-                    <ForwardRef(Fade)
-                      in={true}
-                      onClick={[Function]}
-                      timeout={
-                        Object {
-                          "enter": 225,
-                          "exit": 195,
-                        }
-                      }
-                    >
-                      <Transition
-                        appear={true}
-                        enter={true}
-                        exit={true}
-                        in={true}
-                        mountOnEnter={false}
-                        onClick={[Function]}
-                        onEnter={[Function]}
-                        onEntered={[Function]}
-                        onEntering={[Function]}
-                        onExit={[Function]}
-                        onExited={[Function]}
-                        onExiting={[Function]}
-                        timeout={
-                          Object {
-                            "enter": 225,
-                            "exit": 195,
-                          }
-                        }
-                        unmountOnExit={false}
-                      >
-                        <div
-                          aria-hidden={true}
-                          className="MuiBackdrop-root"
-                          onClick={[Function]}
-                          style={
-                            Object {
-                              "opacity": 1,
-                              "visibility": undefined,
-                            }
-                          }
-                        />
-                      </Transition>
-                    </ForwardRef(Fade)>
-                  </ForwardRef(Backdrop)>
-                </WithStyles(ForwardRef(Backdrop))>
-                <Unstable_TrapFocus
-                  disableAutoFocus={false}
-                  disableEnforceFocus={false}
-                  disableRestoreFocus={false}
-                  getDoc={[Function]}
-                  isEnabled={[Function]}
-                  open={true}
-                >
-                  <div
-                    data-test="sentinelStart"
-                    tabIndex={0}
-                  />
-                  <ForwardRef(Fade)
-                    appear={true}
-                    in={true}
-                    onEnter={[Function]}
-                    onExited={[Function]}
-                    role="none presentation"
-                    tabIndex="-1"
-                    timeout={
-                      Object {
-                        "enter": 225,
-                        "exit": 195,
-                      }
-                    }
-                  >
-                    <Transition
-                      appear={true}
-                      enter={true}
-                      exit={true}
-                      in={true}
-                      mountOnEnter={false}
-                      onEnter={[Function]}
-                      onEntered={[Function]}
-                      onEntering={[Function]}
-                      onExit={[Function]}
-                      onExited={[Function]}
-                      onExiting={[Function]}
-                      role="none presentation"
-                      tabIndex="-1"
-                      timeout={
-                        Object {
-                          "enter": 225,
-                          "exit": 195,
-                        }
-                      }
-                      unmountOnExit={false}
-                    >
-                      <div
-                        className="MuiDialog-container MuiDialog-scrollPaper"
-                        onMouseDown={[Function]}
-                        onMouseUp={[Function]}
-                        role="none presentation"
-                        style={
-                          Object {
-                            "opacity": 1,
-                            "visibility": undefined,
-                          }
-                        }
-                        tabIndex="-1"
-                      >
-                        <WithStyles(ForwardRef(Paper))
-                          aria-labelledby="accessibility-title"
-                          className="MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm"
-                          elevation={24}
-                          role="dialog"
-                        >
-                          <ForwardRef(Paper)
-                            aria-labelledby="accessibility-title"
-                            className="MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm"
-                            classes={
-                              Object {
-                                "elevation0": "MuiPaper-elevation0",
-                                "elevation1": "MuiPaper-elevation1",
-                                "elevation10": "MuiPaper-elevation10",
-                                "elevation11": "MuiPaper-elevation11",
-                                "elevation12": "MuiPaper-elevation12",
-                                "elevation13": "MuiPaper-elevation13",
-                                "elevation14": "MuiPaper-elevation14",
-                                "elevation15": "MuiPaper-elevation15",
-                                "elevation16": "MuiPaper-elevation16",
-                                "elevation17": "MuiPaper-elevation17",
-                                "elevation18": "MuiPaper-elevation18",
-                                "elevation19": "MuiPaper-elevation19",
-                                "elevation2": "MuiPaper-elevation2",
-                                "elevation20": "MuiPaper-elevation20",
-                                "elevation21": "MuiPaper-elevation21",
-                                "elevation22": "MuiPaper-elevation22",
-                                "elevation23": "MuiPaper-elevation23",
-                                "elevation24": "MuiPaper-elevation24",
-                                "elevation3": "MuiPaper-elevation3",
-                                "elevation4": "MuiPaper-elevation4",
-                                "elevation5": "MuiPaper-elevation5",
-                                "elevation6": "MuiPaper-elevation6",
-                                "elevation7": "MuiPaper-elevation7",
-                                "elevation8": "MuiPaper-elevation8",
-                                "elevation9": "MuiPaper-elevation9",
-                                "outlined": "MuiPaper-outlined",
-                                "root": "MuiPaper-root",
-                                "rounded": "MuiPaper-rounded",
-                              }
-                            }
-                            elevation={24}
-                            role="dialog"
-                          >
-                            <div
-                              aria-labelledby="accessibility-title"
-                              className="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
-                              role="dialog"
-                            >
-                              <div
-                                id="accessibility-title"
-                              >
-                                consumption_visualizer.modal.window_title
-                              </div>
-                              <WithStyles(ForwardRef(IconButton))
-                                aria-label="consumption_visualizer.modal.close"
-                                className="modal-paper-close-button"
-                                onClick={[MockFunction]}
-                              >
-                                <ForwardRef(IconButton)
-                                  aria-label="consumption_visualizer.modal.close"
-                                  className="modal-paper-close-button"
-                                  classes={
-                                    Object {
-                                      "colorInherit": "MuiIconButton-colorInherit",
-                                      "colorPrimary": "MuiIconButton-colorPrimary",
-                                      "colorSecondary": "MuiIconButton-colorSecondary",
-                                      "disabled": "Mui-disabled",
-                                      "edgeEnd": "MuiIconButton-edgeEnd",
-                                      "edgeStart": "MuiIconButton-edgeStart",
-                                      "label": "MuiIconButton-label",
-                                      "root": "MuiIconButton-root",
-                                      "sizeSmall": "MuiIconButton-sizeSmall",
-                                    }
-                                  }
-                                  onClick={[MockFunction]}
-                                >
-                                  <WithStyles(ForwardRef(ButtonBase))
-                                    aria-label="consumption_visualizer.modal.close"
-                                    centerRipple={true}
-                                    className="MuiIconButton-root modal-paper-close-button"
-                                    disabled={false}
-                                    focusRipple={true}
-                                    onClick={[MockFunction]}
-                                  >
-                                    <ForwardRef(ButtonBase)
-                                      aria-label="consumption_visualizer.modal.close"
-                                      centerRipple={true}
-                                      className="MuiIconButton-root modal-paper-close-button"
-                                      classes={
-                                        Object {
-                                          "disabled": "Mui-disabled",
-                                          "focusVisible": "Mui-focusVisible",
-                                          "root": "MuiButtonBase-root",
-                                        }
-                                      }
-                                      disabled={false}
-                                      focusRipple={true}
-                                      onClick={[MockFunction]}
-                                    >
-                                      <button
-                                        aria-label="consumption_visualizer.modal.close"
-                                        className="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
-                                        disabled={false}
-                                        onBlur={[Function]}
-                                        onClick={[MockFunction]}
-                                        onDragLeave={[Function]}
-                                        onFocus={[Function]}
-                                        onKeyDown={[Function]}
-                                        onKeyUp={[Function]}
-                                        onMouseDown={[Function]}
-                                        onMouseLeave={[Function]}
-                                        onMouseUp={[Function]}
-                                        onTouchEnd={[Function]}
-                                        onTouchMove={[Function]}
-                                        onTouchStart={[Function]}
-                                        tabIndex={0}
-                                        type="button"
-                                      >
-                                        <span
-                                          className="MuiIconButton-label"
-                                        >
-                                          <Icon
-                                            icon="test-file-stub"
-                                            size={16}
-                                            spin={false}
-                                          >
-                                            <Component
-                                              className="styles__icon___23x3R"
-                                              height={16}
-                                              style={Object {}}
-                                              width={16}
-                                            >
-                                              <svg
-                                                className="styles__icon___23x3R"
-                                                height={16}
-                                                style={Object {}}
-                                                width={16}
-                                              >
-                                                <use
-                                                  xlinkHref="#test-file-stub"
-                                                />
-                                              </svg>
-                                            </Component>
-                                          </Icon>
-                                        </span>
-                                        <WithStyles(memo)
-                                          center={true}
-                                        >
-                                          <ForwardRef(TouchRipple)
-                                            center={true}
-                                            classes={
-                                              Object {
-                                                "child": "MuiTouchRipple-child",
-                                                "childLeaving": "MuiTouchRipple-childLeaving",
-                                                "childPulsate": "MuiTouchRipple-childPulsate",
-                                                "ripple": "MuiTouchRipple-ripple",
-                                                "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                "root": "MuiTouchRipple-root",
-                                              }
-                                            }
-                                          >
-                                            <span
-                                              className="MuiTouchRipple-root"
-                                            >
-                                              <TransitionGroup
-                                                childFactory={[Function]}
-                                                component={null}
-                                                exit={true}
-                                              />
-                                            </span>
-                                          </ForwardRef(TouchRipple)>
-                                        </WithStyles(memo)>
-                                      </button>
-                                    </ForwardRef(ButtonBase)>
-                                  </WithStyles(ForwardRef(ButtonBase))>
-                                </ForwardRef(IconButton)>
-                              </WithStyles(ForwardRef(IconButton))>
-                              <div
-                                className="expired-consent-modal"
-                              >
-                                <div
-                                  className="icon-main"
-                                >
-                                  <Icon
-                                    icon="test-file-stub"
-                                    size={135}
-                                    spin={false}
-                                  >
-                                    <Component
-                                      className="styles__icon___23x3R"
-                                      height={135}
-                                      style={Object {}}
-                                      width={135}
-                                    >
-                                      <svg
-                                        className="styles__icon___23x3R"
-                                        height={135}
-                                        style={Object {}}
-                                        width={135}
-                                      >
-                                        <use
-                                          xlinkHref="#test-file-stub"
-                                        />
-                                      </svg>
-                                    </Component>
-                                  </Icon>
-                                </div>
-                                <div
-                                  className="text-20-bold title electricity"
-                                >
-                                  consent_outdated.title.0
-                                </div>
-                                <div>
-                                  consent_outdated.text1.0
-                                </div>
-                                <div
-                                  className="text-16-bold"
-                                >
-                                  consent_outdated.text2.0
-                                </div>
-                                <div
-                                  className="buttons"
-                                >
-                                  <WithStyles(ForwardRef(Button))
-                                    aria-label="consent_outdated.later"
-                                    className="btnSecondary"
-                                    onClick={[MockFunction]}
-                                  >
-                                    <ForwardRef(Button)
-                                      aria-label="consent_outdated.later"
-                                      className="btnSecondary"
-                                      classes={
-                                        Object {
-                                          "colorInherit": "MuiButton-colorInherit",
-                                          "contained": "MuiButton-contained",
-                                          "containedPrimary": "MuiButton-containedPrimary",
-                                          "containedSecondary": "MuiButton-containedSecondary",
-                                          "containedSizeLarge": "MuiButton-containedSizeLarge",
-                                          "containedSizeSmall": "MuiButton-containedSizeSmall",
-                                          "disableElevation": "MuiButton-disableElevation",
-                                          "disabled": "Mui-disabled",
-                                          "endIcon": "MuiButton-endIcon",
-                                          "focusVisible": "Mui-focusVisible",
-                                          "fullWidth": "MuiButton-fullWidth",
-                                          "iconSizeLarge": "MuiButton-iconSizeLarge",
-                                          "iconSizeMedium": "MuiButton-iconSizeMedium",
-                                          "iconSizeSmall": "MuiButton-iconSizeSmall",
-                                          "label": "MuiButton-label",
-                                          "outlined": "MuiButton-outlined",
-                                          "outlinedPrimary": "MuiButton-outlinedPrimary",
-                                          "outlinedSecondary": "MuiButton-outlinedSecondary",
-                                          "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                                          "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                                          "root": "MuiButton-root",
-                                          "sizeLarge": "MuiButton-sizeLarge",
-                                          "sizeSmall": "MuiButton-sizeSmall",
-                                          "startIcon": "MuiButton-startIcon",
-                                          "text": "MuiButton-text",
-                                          "textPrimary": "MuiButton-textPrimary",
-                                          "textSecondary": "MuiButton-textSecondary",
-                                          "textSizeLarge": "MuiButton-textSizeLarge",
-                                          "textSizeSmall": "MuiButton-textSizeSmall",
-                                        }
-                                      }
-                                      onClick={[MockFunction]}
-                                    >
-                                      <WithStyles(ForwardRef(ButtonBase))
-                                        aria-label="consent_outdated.later"
-                                        className="MuiButton-root MuiButton-text btnSecondary"
-                                        component="button"
-                                        disabled={false}
-                                        focusRipple={true}
-                                        focusVisibleClassName="Mui-focusVisible"
-                                        onClick={[MockFunction]}
-                                        type="button"
-                                      >
-                                        <ForwardRef(ButtonBase)
-                                          aria-label="consent_outdated.later"
-                                          className="MuiButton-root MuiButton-text btnSecondary"
-                                          classes={
-                                            Object {
-                                              "disabled": "Mui-disabled",
-                                              "focusVisible": "Mui-focusVisible",
-                                              "root": "MuiButtonBase-root",
-                                            }
-                                          }
-                                          component="button"
-                                          disabled={false}
-                                          focusRipple={true}
-                                          focusVisibleClassName="Mui-focusVisible"
-                                          onClick={[MockFunction]}
-                                          type="button"
-                                        >
-                                          <button
-                                            aria-label="consent_outdated.later"
-                                            className="MuiButtonBase-root MuiButton-root MuiButton-text btnSecondary"
-                                            disabled={false}
-                                            onBlur={[Function]}
-                                            onClick={[MockFunction]}
-                                            onDragLeave={[Function]}
-                                            onFocus={[Function]}
-                                            onKeyDown={[Function]}
-                                            onKeyUp={[Function]}
-                                            onMouseDown={[Function]}
-                                            onMouseLeave={[Function]}
-                                            onMouseUp={[Function]}
-                                            onTouchEnd={[Function]}
-                                            onTouchMove={[Function]}
-                                            onTouchStart={[Function]}
-                                            tabIndex={0}
-                                            type="button"
-                                          >
-                                            <span
-                                              className="MuiButton-label"
-                                            >
-                                              consent_outdated.no
-                                            </span>
-                                            <WithStyles(memo)
-                                              center={false}
-                                            >
-                                              <ForwardRef(TouchRipple)
-                                                center={false}
-                                                classes={
-                                                  Object {
-                                                    "child": "MuiTouchRipple-child",
-                                                    "childLeaving": "MuiTouchRipple-childLeaving",
-                                                    "childPulsate": "MuiTouchRipple-childPulsate",
-                                                    "ripple": "MuiTouchRipple-ripple",
-                                                    "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                    "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                    "root": "MuiTouchRipple-root",
-                                                  }
-                                                }
-                                              >
-                                                <span
-                                                  className="MuiTouchRipple-root"
-                                                >
-                                                  <TransitionGroup
-                                                    childFactory={[Function]}
-                                                    component={null}
-                                                    exit={true}
-                                                  />
-                                                </span>
-                                              </ForwardRef(TouchRipple)>
-                                            </WithStyles(memo)>
-                                          </button>
-                                        </ForwardRef(ButtonBase)>
-                                      </WithStyles(ForwardRef(ButtonBase))>
-                                    </ForwardRef(Button)>
-                                  </WithStyles(ForwardRef(Button))>
-                                  <WithStyles(ForwardRef(Button))
-                                    aria-label="consent_outdated.go"
-                                    className="btnPrimary"
-                                    onClick={[Function]}
-                                  >
-                                    <ForwardRef(Button)
-                                      aria-label="consent_outdated.go"
-                                      className="btnPrimary"
-                                      classes={
-                                        Object {
-                                          "colorInherit": "MuiButton-colorInherit",
-                                          "contained": "MuiButton-contained",
-                                          "containedPrimary": "MuiButton-containedPrimary",
-                                          "containedSecondary": "MuiButton-containedSecondary",
-                                          "containedSizeLarge": "MuiButton-containedSizeLarge",
-                                          "containedSizeSmall": "MuiButton-containedSizeSmall",
-                                          "disableElevation": "MuiButton-disableElevation",
-                                          "disabled": "Mui-disabled",
-                                          "endIcon": "MuiButton-endIcon",
-                                          "focusVisible": "Mui-focusVisible",
-                                          "fullWidth": "MuiButton-fullWidth",
-                                          "iconSizeLarge": "MuiButton-iconSizeLarge",
-                                          "iconSizeMedium": "MuiButton-iconSizeMedium",
-                                          "iconSizeSmall": "MuiButton-iconSizeSmall",
-                                          "label": "MuiButton-label",
-                                          "outlined": "MuiButton-outlined",
-                                          "outlinedPrimary": "MuiButton-outlinedPrimary",
-                                          "outlinedSecondary": "MuiButton-outlinedSecondary",
-                                          "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                                          "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                                          "root": "MuiButton-root",
-                                          "sizeLarge": "MuiButton-sizeLarge",
-                                          "sizeSmall": "MuiButton-sizeSmall",
-                                          "startIcon": "MuiButton-startIcon",
-                                          "text": "MuiButton-text",
-                                          "textPrimary": "MuiButton-textPrimary",
-                                          "textSecondary": "MuiButton-textSecondary",
-                                          "textSizeLarge": "MuiButton-textSizeLarge",
-                                          "textSizeSmall": "MuiButton-textSizeSmall",
-                                        }
-                                      }
-                                      onClick={[Function]}
-                                    >
-                                      <WithStyles(ForwardRef(ButtonBase))
-                                        aria-label="consent_outdated.go"
-                                        className="MuiButton-root MuiButton-text btnPrimary"
-                                        component="button"
-                                        disabled={false}
-                                        focusRipple={true}
-                                        focusVisibleClassName="Mui-focusVisible"
-                                        onClick={[Function]}
-                                        type="button"
-                                      >
-                                        <ForwardRef(ButtonBase)
-                                          aria-label="consent_outdated.go"
-                                          className="MuiButton-root MuiButton-text btnPrimary"
-                                          classes={
-                                            Object {
-                                              "disabled": "Mui-disabled",
-                                              "focusVisible": "Mui-focusVisible",
-                                              "root": "MuiButtonBase-root",
-                                            }
-                                          }
-                                          component="button"
-                                          disabled={false}
-                                          focusRipple={true}
-                                          focusVisibleClassName="Mui-focusVisible"
-                                          onClick={[Function]}
-                                          type="button"
-                                        >
-                                          <button
-                                            aria-label="consent_outdated.go"
-                                            className="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                                            disabled={false}
-                                            onBlur={[Function]}
-                                            onClick={[Function]}
-                                            onDragLeave={[Function]}
-                                            onFocus={[Function]}
-                                            onKeyDown={[Function]}
-                                            onKeyUp={[Function]}
-                                            onMouseDown={[Function]}
-                                            onMouseLeave={[Function]}
-                                            onMouseUp={[Function]}
-                                            onTouchEnd={[Function]}
-                                            onTouchMove={[Function]}
-                                            onTouchStart={[Function]}
-                                            tabIndex={0}
-                                            type="button"
-                                          >
-                                            <span
-                                              className="MuiButton-label"
-                                            >
-                                              consent_outdated.yes
-                                            </span>
-                                            <WithStyles(memo)
-                                              center={false}
-                                            >
-                                              <ForwardRef(TouchRipple)
-                                                center={false}
-                                                classes={
-                                                  Object {
-                                                    "child": "MuiTouchRipple-child",
-                                                    "childLeaving": "MuiTouchRipple-childLeaving",
-                                                    "childPulsate": "MuiTouchRipple-childPulsate",
-                                                    "ripple": "MuiTouchRipple-ripple",
-                                                    "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                    "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                    "root": "MuiTouchRipple-root",
-                                                  }
-                                                }
-                                              >
-                                                <span
-                                                  className="MuiTouchRipple-root"
-                                                >
-                                                  <TransitionGroup
-                                                    childFactory={[Function]}
-                                                    component={null}
-                                                    exit={true}
-                                                  />
-                                                </span>
-                                              </ForwardRef(TouchRipple)>
-                                            </WithStyles(memo)>
-                                          </button>
-                                        </ForwardRef(ButtonBase)>
-                                      </WithStyles(ForwardRef(ButtonBase))>
-                                    </ForwardRef(Button)>
-                                  </WithStyles(ForwardRef(Button))>
-                                </div>
-                              </div>
-                            </div>
-                          </ForwardRef(Paper)>
-                        </WithStyles(ForwardRef(Paper))>
-                      </div>
-                    </Transition>
-                  </ForwardRef(Fade)>
-                  <div
-                    data-test="sentinelEnd"
-                    tabIndex={0}
-                  />
-                </Unstable_TrapFocus>
-              </div>
-            </Portal>
-          </ForwardRef(Portal)>
-        </ForwardRef(Modal)>
-      </ForwardRef(Dialog)>
-    </WithStyles(ForwardRef(Dialog))>
-  </ExpiredConsentModal>
-</Provider>
+<div
+  aria-hidden="true"
+/>
 `;
diff --git a/src/components/Connection/GRDFDeleteAccountModal/DeleteGRDFAccountModal.spec.tsx b/src/components/Connection/GRDFDeleteAccountModal/DeleteGRDFAccountModal.spec.tsx
index ea767693397e0a5b816c5b3b0929a703902c491b..a2dc737bed579aed519340cd83a9210d901dec6d 100644
--- a/src/components/Connection/GRDFDeleteAccountModal/DeleteGRDFAccountModal.spec.tsx
+++ b/src/components/Connection/GRDFDeleteAccountModal/DeleteGRDFAccountModal.spec.tsx
@@ -1,31 +1,31 @@
-import { Button } from '@material-ui/core'
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render, screen } from '@testing-library/react'
+import { userEvent } from '@testing-library/user-event'
 import React from 'react'
 import DeleteGRDFAccountModal from './DeleteGRDFAccountModal'
 
 describe('DeleteGRDFAccountModal component', () => {
   it('should be rendered correctly', () => {
-    const component = mount(
+    const { container } = render(
       <DeleteGRDFAccountModal
         open={true}
         handleCloseClick={jest.fn()}
         deleteAccount={jest.fn()}
       />
     )
-    expect(toJson(component)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
-  it('should launch the deletion process and close modal', () => {
+  it('should launch the deletion process and close modal', async () => {
     const mockDelete = jest.fn()
-    const mockClose = jest.fn()
-    const component = mount(
+    render(
       <DeleteGRDFAccountModal
         open={true}
-        handleCloseClick={mockClose}
+        handleCloseClick={jest.fn()}
         deleteAccount={mockDelete}
       />
     )
-    component.find(Button).at(1).simulate('click')
+    await userEvent.click(
+      screen.getByRole('button', { name: 'delete_grdf_modal.go' })
+    )
     expect(mockDelete).toHaveBeenCalledTimes(1)
   })
 })
diff --git a/src/components/Connection/GRDFDeleteAccountModal/__snapshots__/DeleteGRDFAccountModal.spec.tsx.snap b/src/components/Connection/GRDFDeleteAccountModal/__snapshots__/DeleteGRDFAccountModal.spec.tsx.snap
index 90f274f0100a4f18149d4d58a902a0a3c17ace14..fccb539c7f7e15d784baea2ddbee70b1e04f3155 100644
--- a/src/components/Connection/GRDFDeleteAccountModal/__snapshots__/DeleteGRDFAccountModal.spec.tsx.snap
+++ b/src/components/Connection/GRDFDeleteAccountModal/__snapshots__/DeleteGRDFAccountModal.spec.tsx.snap
@@ -1,1160 +1,7 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`DeleteGRDFAccountModal component should be rendered correctly 1`] = `
-<DeleteGRDFAccountModal
-  deleteAccount={[MockFunction]}
-  handleCloseClick={[MockFunction]}
-  open={true}
->
-  <WithStyles(ForwardRef(Dialog))
-    aria-labelledby="accessibility-title"
-    classes={
-      Object {
-        "paper": "modal-paper",
-        "root": "modal-root",
-      }
-    }
-    onClose={[MockFunction]}
-    open={true}
-  >
-    <ForwardRef(Dialog)
-      aria-labelledby="accessibility-title"
-      classes={
-        Object {
-          "container": "MuiDialog-container",
-          "paper": "MuiDialog-paper modal-paper",
-          "paperFullScreen": "MuiDialog-paperFullScreen",
-          "paperFullWidth": "MuiDialog-paperFullWidth",
-          "paperScrollBody": "MuiDialog-paperScrollBody",
-          "paperScrollPaper": "MuiDialog-paperScrollPaper",
-          "paperWidthFalse": "MuiDialog-paperWidthFalse",
-          "paperWidthLg": "MuiDialog-paperWidthLg",
-          "paperWidthMd": "MuiDialog-paperWidthMd",
-          "paperWidthSm": "MuiDialog-paperWidthSm",
-          "paperWidthXl": "MuiDialog-paperWidthXl",
-          "paperWidthXs": "MuiDialog-paperWidthXs",
-          "root": "MuiDialog-root modal-root",
-          "scrollBody": "MuiDialog-scrollBody",
-          "scrollPaper": "MuiDialog-scrollPaper",
-        }
-      }
-      onClose={[MockFunction]}
-      open={true}
-    >
-      <ForwardRef(Modal)
-        BackdropComponent={
-          Object {
-            "$$typeof": Symbol(react.forward_ref),
-            "Naked": Object {
-              "$$typeof": Symbol(react.forward_ref),
-              "propTypes": Object {
-                "children": [Function],
-                "className": [Function],
-                "classes": [Function],
-                "invisible": [Function],
-                "open": [Function],
-                "transitionDuration": [Function],
-              },
-              "render": [Function],
-            },
-            "displayName": "WithStyles(ForwardRef(Backdrop))",
-            "options": Object {
-              "defaultTheme": Object {
-                "breakpoints": Object {
-                  "between": [Function],
-                  "down": [Function],
-                  "keys": Array [
-                    "xs",
-                    "sm",
-                    "md",
-                    "lg",
-                    "xl",
-                  ],
-                  "only": [Function],
-                  "up": [Function],
-                  "values": Object {
-                    "lg": 1280,
-                    "md": 960,
-                    "sm": 600,
-                    "xl": 1920,
-                    "xs": 0,
-                  },
-                  "width": [Function],
-                },
-                "direction": "ltr",
-                "mixins": Object {
-                  "gutters": [Function],
-                  "toolbar": Object {
-                    "@media (min-width:0px) and (orientation: landscape)": Object {
-                      "minHeight": 48,
-                    },
-                    "@media (min-width:600px)": Object {
-                      "minHeight": 64,
-                    },
-                    "minHeight": 56,
-                  },
-                },
-                "overrides": Object {},
-                "palette": Object {
-                  "action": Object {
-                    "activatedOpacity": 0.12,
-                    "active": "rgba(0, 0, 0, 0.54)",
-                    "disabled": "rgba(0, 0, 0, 0.26)",
-                    "disabledBackground": "rgba(0, 0, 0, 0.12)",
-                    "disabledOpacity": 0.38,
-                    "focus": "rgba(0, 0, 0, 0.12)",
-                    "focusOpacity": 0.12,
-                    "hover": "rgba(0, 0, 0, 0.04)",
-                    "hoverOpacity": 0.04,
-                    "selected": "rgba(0, 0, 0, 0.08)",
-                    "selectedOpacity": 0.08,
-                  },
-                  "augmentColor": [Function],
-                  "background": Object {
-                    "default": "#fafafa",
-                    "paper": "#fff",
-                  },
-                  "common": Object {
-                    "black": "#000",
-                    "white": "#fff",
-                  },
-                  "contrastThreshold": 3,
-                  "divider": "rgba(0, 0, 0, 0.12)",
-                  "error": Object {
-                    "contrastText": "#fff",
-                    "dark": "#d32f2f",
-                    "light": "#e57373",
-                    "main": "#f44336",
-                  },
-                  "getContrastText": [Function],
-                  "grey": Object {
-                    "100": "#f5f5f5",
-                    "200": "#eeeeee",
-                    "300": "#e0e0e0",
-                    "400": "#bdbdbd",
-                    "50": "#fafafa",
-                    "500": "#9e9e9e",
-                    "600": "#757575",
-                    "700": "#616161",
-                    "800": "#424242",
-                    "900": "#212121",
-                    "A100": "#d5d5d5",
-                    "A200": "#aaaaaa",
-                    "A400": "#303030",
-                    "A700": "#616161",
-                  },
-                  "info": Object {
-                    "contrastText": "#fff",
-                    "dark": "#1976d2",
-                    "light": "#64b5f6",
-                    "main": "#2196f3",
-                  },
-                  "primary": Object {
-                    "contrastText": "#fff",
-                    "dark": "#303f9f",
-                    "light": "#7986cb",
-                    "main": "#3f51b5",
-                  },
-                  "secondary": Object {
-                    "contrastText": "#fff",
-                    "dark": "#c51162",
-                    "light": "#ff4081",
-                    "main": "#f50057",
-                  },
-                  "success": Object {
-                    "contrastText": "rgba(0, 0, 0, 0.87)",
-                    "dark": "#388e3c",
-                    "light": "#81c784",
-                    "main": "#4caf50",
-                  },
-                  "text": Object {
-                    "disabled": "rgba(0, 0, 0, 0.38)",
-                    "hint": "rgba(0, 0, 0, 0.38)",
-                    "primary": "rgba(0, 0, 0, 0.87)",
-                    "secondary": "rgba(0, 0, 0, 0.54)",
-                  },
-                  "tonalOffset": 0.2,
-                  "type": "light",
-                  "warning": Object {
-                    "contrastText": "rgba(0, 0, 0, 0.87)",
-                    "dark": "#f57c00",
-                    "light": "#ffb74d",
-                    "main": "#ff9800",
-                  },
-                },
-                "props": Object {},
-                "shadows": Array [
-                  "none",
-                  "0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12)",
-                  "0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12)",
-                  "0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12)",
-                  "0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)",
-                  "0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)",
-                  "0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)",
-                  "0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)",
-                  "0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)",
-                  "0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)",
-                  "0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)",
-                  "0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)",
-                  "0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)",
-                  "0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)",
-                  "0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)",
-                  "0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)",
-                  "0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)",
-                  "0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)",
-                  "0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)",
-                  "0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)",
-                  "0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)",
-                  "0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)",
-                  "0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)",
-                  "0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)",
-                  "0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)",
-                ],
-                "shape": Object {
-                  "borderRadius": 4,
-                },
-                "spacing": [Function],
-                "transitions": Object {
-                  "create": [Function],
-                  "duration": Object {
-                    "complex": 375,
-                    "enteringScreen": 225,
-                    "leavingScreen": 195,
-                    "short": 250,
-                    "shorter": 200,
-                    "shortest": 150,
-                    "standard": 300,
-                  },
-                  "easing": Object {
-                    "easeIn": "cubic-bezier(0.4, 0, 1, 1)",
-                    "easeInOut": "cubic-bezier(0.4, 0, 0.2, 1)",
-                    "easeOut": "cubic-bezier(0.0, 0, 0.2, 1)",
-                    "sharp": "cubic-bezier(0.4, 0, 0.6, 1)",
-                  },
-                  "getAutoHeightDuration": [Function],
-                },
-                "typography": Object {
-                  "body1": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "1rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0.00938em",
-                    "lineHeight": 1.5,
-                  },
-                  "body2": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "0.875rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0.01071em",
-                    "lineHeight": 1.43,
-                  },
-                  "button": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "0.875rem",
-                    "fontWeight": 500,
-                    "letterSpacing": "0.02857em",
-                    "lineHeight": 1.75,
-                    "textTransform": "uppercase",
-                  },
-                  "caption": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "0.75rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0.03333em",
-                    "lineHeight": 1.66,
-                  },
-                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                  "fontSize": 14,
-                  "fontWeightBold": 700,
-                  "fontWeightLight": 300,
-                  "fontWeightMedium": 500,
-                  "fontWeightRegular": 400,
-                  "h1": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "6rem",
-                    "fontWeight": 300,
-                    "letterSpacing": "-0.01562em",
-                    "lineHeight": 1.167,
-                  },
-                  "h2": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "3.75rem",
-                    "fontWeight": 300,
-                    "letterSpacing": "-0.00833em",
-                    "lineHeight": 1.2,
-                  },
-                  "h3": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "3rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0em",
-                    "lineHeight": 1.167,
-                  },
-                  "h4": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "2.125rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0.00735em",
-                    "lineHeight": 1.235,
-                  },
-                  "h5": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "1.5rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0em",
-                    "lineHeight": 1.334,
-                  },
-                  "h6": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "1.25rem",
-                    "fontWeight": 500,
-                    "letterSpacing": "0.0075em",
-                    "lineHeight": 1.6,
-                  },
-                  "htmlFontSize": 16,
-                  "overline": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "0.75rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0.08333em",
-                    "lineHeight": 2.66,
-                    "textTransform": "uppercase",
-                  },
-                  "pxToRem": [Function],
-                  "round": [Function],
-                  "subtitle1": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "1rem",
-                    "fontWeight": 400,
-                    "letterSpacing": "0.00938em",
-                    "lineHeight": 1.75,
-                  },
-                  "subtitle2": Object {
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": "0.875rem",
-                    "fontWeight": 500,
-                    "letterSpacing": "0.00714em",
-                    "lineHeight": 1.57,
-                  },
-                },
-                "zIndex": Object {
-                  "appBar": 1100,
-                  "drawer": 1200,
-                  "mobileStepper": 1000,
-                  "modal": 1300,
-                  "snackbar": 1400,
-                  "speedDial": 1050,
-                  "tooltip": 1500,
-                },
-              },
-              "name": "MuiBackdrop",
-            },
-            "propTypes": Object {
-              "classes": [Function],
-              "innerRef": [Function],
-            },
-            "render": [Function],
-            "useStyles": [Function],
-          }
-        }
-        BackdropProps={
-          Object {
-            "transitionDuration": Object {
-              "enter": 225,
-              "exit": 195,
-            },
-          }
-        }
-        className="MuiDialog-root modal-root"
-        closeAfterTransition={true}
-        disableEscapeKeyDown={false}
-        onClose={[MockFunction]}
-        open={true}
-      >
-        <ForwardRef(Portal)
-          disablePortal={false}
-        >
-          <Portal
-            containerInfo={
-              <body
-                style="padding-right: 0px; overflow: hidden;"
-              >
-                <div
-                  class="MuiDialog-root modal-root"
-                  role="presentation"
-                  style="position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;"
-                >
-                  <div
-                    aria-hidden="true"
-                    class="MuiBackdrop-root"
-                    style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
-                  />
-                  <div
-                    data-test="sentinelStart"
-                    tabindex="0"
-                  />
-                  <div
-                    class="MuiDialog-container MuiDialog-scrollPaper"
-                    role="none presentation"
-                    style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
-                    tabindex="-1"
-                  >
-                    <div
-                      aria-labelledby="accessibility-title"
-                      class="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
-                      role="dialog"
-                    >
-                      <div
-                        id="accessibility-title"
-                      >
-                        consumption_visualizer.modal.window_title
-                      </div>
-                      <button
-                        aria-label="consumption_visualizer.modal.close"
-                        class="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
-                        tabindex="0"
-                        type="button"
-                      >
-                        <span
-                          class="MuiIconButton-label"
-                        >
-                          <svg
-                            class="styles__icon___23x3R"
-                            height="16"
-                            width="16"
-                          >
-                            <use
-                              xlink:href="#test-file-stub"
-                            />
-                          </svg>
-                        </span>
-                        <span
-                          class="MuiTouchRipple-root"
-                        />
-                      </button>
-                      <div
-                        class="delete-grdf-modal"
-                      >
-                        <div
-                          class="icon-main"
-                        >
-                          <svg
-                            class="styles__icon___23x3R"
-                            height="135"
-                            width="135"
-                          >
-                            <use
-                              xlink:href="#test-file-stub"
-                            />
-                          </svg>
-                        </div>
-                        <div
-                          class="text-15-normal text1"
-                        >
-                          delete_grdf_modal.text1
-                        </div>
-                        <div
-                          class="text-16-normal text2"
-                        >
-                          delete_grdf_modal.text2
-                        </div>
-                        <div
-                          class="text-15-normal text3"
-                        >
-                          delete_grdf_modal.text3
-                        </div>
-                        <div
-                          class="buttons"
-                        >
-                          <button
-                            aria-label="delete_grdf_modal.cancel"
-                            class="MuiButtonBase-root MuiButton-root MuiButton-text btnSecondary"
-                            tabindex="0"
-                            type="button"
-                          >
-                            <span
-                              class="MuiButton-label"
-                            >
-                              delete_grdf_modal.cancel
-                            </span>
-                            <span
-                              class="MuiTouchRipple-root"
-                            />
-                          </button>
-                          <button
-                            aria-label="delete_grdf_modal.go"
-                            class="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                            tabindex="0"
-                            type="button"
-                          >
-                            <span
-                              class="MuiButton-label"
-                            >
-                              delete_grdf_modal.go
-                            </span>
-                            <span
-                              class="MuiTouchRipple-root"
-                            />
-                          </button>
-                        </div>
-                      </div>
-                    </div>
-                  </div>
-                  <div
-                    data-test="sentinelEnd"
-                    tabindex="0"
-                  />
-                </div>
-              </body>
-            }
-          >
-            <div
-              className="MuiDialog-root modal-root"
-              onKeyDown={[Function]}
-              role="presentation"
-              style={
-                Object {
-                  "bottom": 0,
-                  "left": 0,
-                  "position": "fixed",
-                  "right": 0,
-                  "top": 0,
-                  "zIndex": 1300,
-                }
-              }
-            >
-              <WithStyles(ForwardRef(Backdrop))
-                onClick={[Function]}
-                open={true}
-                transitionDuration={
-                  Object {
-                    "enter": 225,
-                    "exit": 195,
-                  }
-                }
-              >
-                <ForwardRef(Backdrop)
-                  classes={
-                    Object {
-                      "invisible": "MuiBackdrop-invisible",
-                      "root": "MuiBackdrop-root",
-                    }
-                  }
-                  onClick={[Function]}
-                  open={true}
-                  transitionDuration={
-                    Object {
-                      "enter": 225,
-                      "exit": 195,
-                    }
-                  }
-                >
-                  <ForwardRef(Fade)
-                    in={true}
-                    onClick={[Function]}
-                    timeout={
-                      Object {
-                        "enter": 225,
-                        "exit": 195,
-                      }
-                    }
-                  >
-                    <Transition
-                      appear={true}
-                      enter={true}
-                      exit={true}
-                      in={true}
-                      mountOnEnter={false}
-                      onClick={[Function]}
-                      onEnter={[Function]}
-                      onEntered={[Function]}
-                      onEntering={[Function]}
-                      onExit={[Function]}
-                      onExited={[Function]}
-                      onExiting={[Function]}
-                      timeout={
-                        Object {
-                          "enter": 225,
-                          "exit": 195,
-                        }
-                      }
-                      unmountOnExit={false}
-                    >
-                      <div
-                        aria-hidden={true}
-                        className="MuiBackdrop-root"
-                        onClick={[Function]}
-                        style={
-                          Object {
-                            "opacity": 1,
-                            "visibility": undefined,
-                          }
-                        }
-                      />
-                    </Transition>
-                  </ForwardRef(Fade)>
-                </ForwardRef(Backdrop)>
-              </WithStyles(ForwardRef(Backdrop))>
-              <Unstable_TrapFocus
-                disableAutoFocus={false}
-                disableEnforceFocus={false}
-                disableRestoreFocus={false}
-                getDoc={[Function]}
-                isEnabled={[Function]}
-                open={true}
-              >
-                <div
-                  data-test="sentinelStart"
-                  tabIndex={0}
-                />
-                <ForwardRef(Fade)
-                  appear={true}
-                  in={true}
-                  onEnter={[Function]}
-                  onExited={[Function]}
-                  role="none presentation"
-                  tabIndex="-1"
-                  timeout={
-                    Object {
-                      "enter": 225,
-                      "exit": 195,
-                    }
-                  }
-                >
-                  <Transition
-                    appear={true}
-                    enter={true}
-                    exit={true}
-                    in={true}
-                    mountOnEnter={false}
-                    onEnter={[Function]}
-                    onEntered={[Function]}
-                    onEntering={[Function]}
-                    onExit={[Function]}
-                    onExited={[Function]}
-                    onExiting={[Function]}
-                    role="none presentation"
-                    tabIndex="-1"
-                    timeout={
-                      Object {
-                        "enter": 225,
-                        "exit": 195,
-                      }
-                    }
-                    unmountOnExit={false}
-                  >
-                    <div
-                      className="MuiDialog-container MuiDialog-scrollPaper"
-                      onMouseDown={[Function]}
-                      onMouseUp={[Function]}
-                      role="none presentation"
-                      style={
-                        Object {
-                          "opacity": 1,
-                          "visibility": undefined,
-                        }
-                      }
-                      tabIndex="-1"
-                    >
-                      <WithStyles(ForwardRef(Paper))
-                        aria-labelledby="accessibility-title"
-                        className="MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm"
-                        elevation={24}
-                        role="dialog"
-                      >
-                        <ForwardRef(Paper)
-                          aria-labelledby="accessibility-title"
-                          className="MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm"
-                          classes={
-                            Object {
-                              "elevation0": "MuiPaper-elevation0",
-                              "elevation1": "MuiPaper-elevation1",
-                              "elevation10": "MuiPaper-elevation10",
-                              "elevation11": "MuiPaper-elevation11",
-                              "elevation12": "MuiPaper-elevation12",
-                              "elevation13": "MuiPaper-elevation13",
-                              "elevation14": "MuiPaper-elevation14",
-                              "elevation15": "MuiPaper-elevation15",
-                              "elevation16": "MuiPaper-elevation16",
-                              "elevation17": "MuiPaper-elevation17",
-                              "elevation18": "MuiPaper-elevation18",
-                              "elevation19": "MuiPaper-elevation19",
-                              "elevation2": "MuiPaper-elevation2",
-                              "elevation20": "MuiPaper-elevation20",
-                              "elevation21": "MuiPaper-elevation21",
-                              "elevation22": "MuiPaper-elevation22",
-                              "elevation23": "MuiPaper-elevation23",
-                              "elevation24": "MuiPaper-elevation24",
-                              "elevation3": "MuiPaper-elevation3",
-                              "elevation4": "MuiPaper-elevation4",
-                              "elevation5": "MuiPaper-elevation5",
-                              "elevation6": "MuiPaper-elevation6",
-                              "elevation7": "MuiPaper-elevation7",
-                              "elevation8": "MuiPaper-elevation8",
-                              "elevation9": "MuiPaper-elevation9",
-                              "outlined": "MuiPaper-outlined",
-                              "root": "MuiPaper-root",
-                              "rounded": "MuiPaper-rounded",
-                            }
-                          }
-                          elevation={24}
-                          role="dialog"
-                        >
-                          <div
-                            aria-labelledby="accessibility-title"
-                            className="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
-                            role="dialog"
-                          >
-                            <div
-                              id="accessibility-title"
-                            >
-                              consumption_visualizer.modal.window_title
-                            </div>
-                            <WithStyles(ForwardRef(IconButton))
-                              aria-label="consumption_visualizer.modal.close"
-                              className="modal-paper-close-button"
-                              onClick={[MockFunction]}
-                            >
-                              <ForwardRef(IconButton)
-                                aria-label="consumption_visualizer.modal.close"
-                                className="modal-paper-close-button"
-                                classes={
-                                  Object {
-                                    "colorInherit": "MuiIconButton-colorInherit",
-                                    "colorPrimary": "MuiIconButton-colorPrimary",
-                                    "colorSecondary": "MuiIconButton-colorSecondary",
-                                    "disabled": "Mui-disabled",
-                                    "edgeEnd": "MuiIconButton-edgeEnd",
-                                    "edgeStart": "MuiIconButton-edgeStart",
-                                    "label": "MuiIconButton-label",
-                                    "root": "MuiIconButton-root",
-                                    "sizeSmall": "MuiIconButton-sizeSmall",
-                                  }
-                                }
-                                onClick={[MockFunction]}
-                              >
-                                <WithStyles(ForwardRef(ButtonBase))
-                                  aria-label="consumption_visualizer.modal.close"
-                                  centerRipple={true}
-                                  className="MuiIconButton-root modal-paper-close-button"
-                                  disabled={false}
-                                  focusRipple={true}
-                                  onClick={[MockFunction]}
-                                >
-                                  <ForwardRef(ButtonBase)
-                                    aria-label="consumption_visualizer.modal.close"
-                                    centerRipple={true}
-                                    className="MuiIconButton-root modal-paper-close-button"
-                                    classes={
-                                      Object {
-                                        "disabled": "Mui-disabled",
-                                        "focusVisible": "Mui-focusVisible",
-                                        "root": "MuiButtonBase-root",
-                                      }
-                                    }
-                                    disabled={false}
-                                    focusRipple={true}
-                                    onClick={[MockFunction]}
-                                  >
-                                    <button
-                                      aria-label="consumption_visualizer.modal.close"
-                                      className="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
-                                      disabled={false}
-                                      onBlur={[Function]}
-                                      onClick={[MockFunction]}
-                                      onDragLeave={[Function]}
-                                      onFocus={[Function]}
-                                      onKeyDown={[Function]}
-                                      onKeyUp={[Function]}
-                                      onMouseDown={[Function]}
-                                      onMouseLeave={[Function]}
-                                      onMouseUp={[Function]}
-                                      onTouchEnd={[Function]}
-                                      onTouchMove={[Function]}
-                                      onTouchStart={[Function]}
-                                      tabIndex={0}
-                                      type="button"
-                                    >
-                                      <span
-                                        className="MuiIconButton-label"
-                                      >
-                                        <Icon
-                                          icon="test-file-stub"
-                                          size={16}
-                                          spin={false}
-                                        >
-                                          <Component
-                                            className="styles__icon___23x3R"
-                                            height={16}
-                                            style={Object {}}
-                                            width={16}
-                                          >
-                                            <svg
-                                              className="styles__icon___23x3R"
-                                              height={16}
-                                              style={Object {}}
-                                              width={16}
-                                            >
-                                              <use
-                                                xlinkHref="#test-file-stub"
-                                              />
-                                            </svg>
-                                          </Component>
-                                        </Icon>
-                                      </span>
-                                      <WithStyles(memo)
-                                        center={true}
-                                      >
-                                        <ForwardRef(TouchRipple)
-                                          center={true}
-                                          classes={
-                                            Object {
-                                              "child": "MuiTouchRipple-child",
-                                              "childLeaving": "MuiTouchRipple-childLeaving",
-                                              "childPulsate": "MuiTouchRipple-childPulsate",
-                                              "ripple": "MuiTouchRipple-ripple",
-                                              "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                              "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                              "root": "MuiTouchRipple-root",
-                                            }
-                                          }
-                                        >
-                                          <span
-                                            className="MuiTouchRipple-root"
-                                          >
-                                            <TransitionGroup
-                                              childFactory={[Function]}
-                                              component={null}
-                                              exit={true}
-                                            />
-                                          </span>
-                                        </ForwardRef(TouchRipple)>
-                                      </WithStyles(memo)>
-                                    </button>
-                                  </ForwardRef(ButtonBase)>
-                                </WithStyles(ForwardRef(ButtonBase))>
-                              </ForwardRef(IconButton)>
-                            </WithStyles(ForwardRef(IconButton))>
-                            <div
-                              className="delete-grdf-modal"
-                            >
-                              <div
-                                className="icon-main"
-                              >
-                                <Icon
-                                  icon="test-file-stub"
-                                  size={135}
-                                  spin={false}
-                                >
-                                  <Component
-                                    className="styles__icon___23x3R"
-                                    height={135}
-                                    style={Object {}}
-                                    width={135}
-                                  >
-                                    <svg
-                                      className="styles__icon___23x3R"
-                                      height={135}
-                                      style={Object {}}
-                                      width={135}
-                                    >
-                                      <use
-                                        xlinkHref="#test-file-stub"
-                                      />
-                                    </svg>
-                                  </Component>
-                                </Icon>
-                              </div>
-                              <div
-                                className="text-15-normal text1"
-                              >
-                                delete_grdf_modal.text1
-                              </div>
-                              <div
-                                className="text-16-normal text2"
-                              >
-                                delete_grdf_modal.text2
-                              </div>
-                              <div
-                                className="text-15-normal text3"
-                              >
-                                delete_grdf_modal.text3
-                              </div>
-                              <div
-                                className="buttons"
-                              >
-                                <WithStyles(ForwardRef(Button))
-                                  aria-label="delete_grdf_modal.cancel"
-                                  className="btnSecondary"
-                                  onClick={[MockFunction]}
-                                >
-                                  <ForwardRef(Button)
-                                    aria-label="delete_grdf_modal.cancel"
-                                    className="btnSecondary"
-                                    classes={
-                                      Object {
-                                        "colorInherit": "MuiButton-colorInherit",
-                                        "contained": "MuiButton-contained",
-                                        "containedPrimary": "MuiButton-containedPrimary",
-                                        "containedSecondary": "MuiButton-containedSecondary",
-                                        "containedSizeLarge": "MuiButton-containedSizeLarge",
-                                        "containedSizeSmall": "MuiButton-containedSizeSmall",
-                                        "disableElevation": "MuiButton-disableElevation",
-                                        "disabled": "Mui-disabled",
-                                        "endIcon": "MuiButton-endIcon",
-                                        "focusVisible": "Mui-focusVisible",
-                                        "fullWidth": "MuiButton-fullWidth",
-                                        "iconSizeLarge": "MuiButton-iconSizeLarge",
-                                        "iconSizeMedium": "MuiButton-iconSizeMedium",
-                                        "iconSizeSmall": "MuiButton-iconSizeSmall",
-                                        "label": "MuiButton-label",
-                                        "outlined": "MuiButton-outlined",
-                                        "outlinedPrimary": "MuiButton-outlinedPrimary",
-                                        "outlinedSecondary": "MuiButton-outlinedSecondary",
-                                        "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                                        "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                                        "root": "MuiButton-root",
-                                        "sizeLarge": "MuiButton-sizeLarge",
-                                        "sizeSmall": "MuiButton-sizeSmall",
-                                        "startIcon": "MuiButton-startIcon",
-                                        "text": "MuiButton-text",
-                                        "textPrimary": "MuiButton-textPrimary",
-                                        "textSecondary": "MuiButton-textSecondary",
-                                        "textSizeLarge": "MuiButton-textSizeLarge",
-                                        "textSizeSmall": "MuiButton-textSizeSmall",
-                                      }
-                                    }
-                                    onClick={[MockFunction]}
-                                  >
-                                    <WithStyles(ForwardRef(ButtonBase))
-                                      aria-label="delete_grdf_modal.cancel"
-                                      className="MuiButton-root MuiButton-text btnSecondary"
-                                      component="button"
-                                      disabled={false}
-                                      focusRipple={true}
-                                      focusVisibleClassName="Mui-focusVisible"
-                                      onClick={[MockFunction]}
-                                      type="button"
-                                    >
-                                      <ForwardRef(ButtonBase)
-                                        aria-label="delete_grdf_modal.cancel"
-                                        className="MuiButton-root MuiButton-text btnSecondary"
-                                        classes={
-                                          Object {
-                                            "disabled": "Mui-disabled",
-                                            "focusVisible": "Mui-focusVisible",
-                                            "root": "MuiButtonBase-root",
-                                          }
-                                        }
-                                        component="button"
-                                        disabled={false}
-                                        focusRipple={true}
-                                        focusVisibleClassName="Mui-focusVisible"
-                                        onClick={[MockFunction]}
-                                        type="button"
-                                      >
-                                        <button
-                                          aria-label="delete_grdf_modal.cancel"
-                                          className="MuiButtonBase-root MuiButton-root MuiButton-text btnSecondary"
-                                          disabled={false}
-                                          onBlur={[Function]}
-                                          onClick={[MockFunction]}
-                                          onDragLeave={[Function]}
-                                          onFocus={[Function]}
-                                          onKeyDown={[Function]}
-                                          onKeyUp={[Function]}
-                                          onMouseDown={[Function]}
-                                          onMouseLeave={[Function]}
-                                          onMouseUp={[Function]}
-                                          onTouchEnd={[Function]}
-                                          onTouchMove={[Function]}
-                                          onTouchStart={[Function]}
-                                          tabIndex={0}
-                                          type="button"
-                                        >
-                                          <span
-                                            className="MuiButton-label"
-                                          >
-                                            delete_grdf_modal.cancel
-                                          </span>
-                                          <WithStyles(memo)
-                                            center={false}
-                                          >
-                                            <ForwardRef(TouchRipple)
-                                              center={false}
-                                              classes={
-                                                Object {
-                                                  "child": "MuiTouchRipple-child",
-                                                  "childLeaving": "MuiTouchRipple-childLeaving",
-                                                  "childPulsate": "MuiTouchRipple-childPulsate",
-                                                  "ripple": "MuiTouchRipple-ripple",
-                                                  "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                  "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                  "root": "MuiTouchRipple-root",
-                                                }
-                                              }
-                                            >
-                                              <span
-                                                className="MuiTouchRipple-root"
-                                              >
-                                                <TransitionGroup
-                                                  childFactory={[Function]}
-                                                  component={null}
-                                                  exit={true}
-                                                />
-                                              </span>
-                                            </ForwardRef(TouchRipple)>
-                                          </WithStyles(memo)>
-                                        </button>
-                                      </ForwardRef(ButtonBase)>
-                                    </WithStyles(ForwardRef(ButtonBase))>
-                                  </ForwardRef(Button)>
-                                </WithStyles(ForwardRef(Button))>
-                                <WithStyles(ForwardRef(Button))
-                                  aria-label="delete_grdf_modal.go"
-                                  className="btnPrimary"
-                                  onClick={[Function]}
-                                >
-                                  <ForwardRef(Button)
-                                    aria-label="delete_grdf_modal.go"
-                                    className="btnPrimary"
-                                    classes={
-                                      Object {
-                                        "colorInherit": "MuiButton-colorInherit",
-                                        "contained": "MuiButton-contained",
-                                        "containedPrimary": "MuiButton-containedPrimary",
-                                        "containedSecondary": "MuiButton-containedSecondary",
-                                        "containedSizeLarge": "MuiButton-containedSizeLarge",
-                                        "containedSizeSmall": "MuiButton-containedSizeSmall",
-                                        "disableElevation": "MuiButton-disableElevation",
-                                        "disabled": "Mui-disabled",
-                                        "endIcon": "MuiButton-endIcon",
-                                        "focusVisible": "Mui-focusVisible",
-                                        "fullWidth": "MuiButton-fullWidth",
-                                        "iconSizeLarge": "MuiButton-iconSizeLarge",
-                                        "iconSizeMedium": "MuiButton-iconSizeMedium",
-                                        "iconSizeSmall": "MuiButton-iconSizeSmall",
-                                        "label": "MuiButton-label",
-                                        "outlined": "MuiButton-outlined",
-                                        "outlinedPrimary": "MuiButton-outlinedPrimary",
-                                        "outlinedSecondary": "MuiButton-outlinedSecondary",
-                                        "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                                        "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                                        "root": "MuiButton-root",
-                                        "sizeLarge": "MuiButton-sizeLarge",
-                                        "sizeSmall": "MuiButton-sizeSmall",
-                                        "startIcon": "MuiButton-startIcon",
-                                        "text": "MuiButton-text",
-                                        "textPrimary": "MuiButton-textPrimary",
-                                        "textSecondary": "MuiButton-textSecondary",
-                                        "textSizeLarge": "MuiButton-textSizeLarge",
-                                        "textSizeSmall": "MuiButton-textSizeSmall",
-                                      }
-                                    }
-                                    onClick={[Function]}
-                                  >
-                                    <WithStyles(ForwardRef(ButtonBase))
-                                      aria-label="delete_grdf_modal.go"
-                                      className="MuiButton-root MuiButton-text btnPrimary"
-                                      component="button"
-                                      disabled={false}
-                                      focusRipple={true}
-                                      focusVisibleClassName="Mui-focusVisible"
-                                      onClick={[Function]}
-                                      type="button"
-                                    >
-                                      <ForwardRef(ButtonBase)
-                                        aria-label="delete_grdf_modal.go"
-                                        className="MuiButton-root MuiButton-text btnPrimary"
-                                        classes={
-                                          Object {
-                                            "disabled": "Mui-disabled",
-                                            "focusVisible": "Mui-focusVisible",
-                                            "root": "MuiButtonBase-root",
-                                          }
-                                        }
-                                        component="button"
-                                        disabled={false}
-                                        focusRipple={true}
-                                        focusVisibleClassName="Mui-focusVisible"
-                                        onClick={[Function]}
-                                        type="button"
-                                      >
-                                        <button
-                                          aria-label="delete_grdf_modal.go"
-                                          className="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                                          disabled={false}
-                                          onBlur={[Function]}
-                                          onClick={[Function]}
-                                          onDragLeave={[Function]}
-                                          onFocus={[Function]}
-                                          onKeyDown={[Function]}
-                                          onKeyUp={[Function]}
-                                          onMouseDown={[Function]}
-                                          onMouseLeave={[Function]}
-                                          onMouseUp={[Function]}
-                                          onTouchEnd={[Function]}
-                                          onTouchMove={[Function]}
-                                          onTouchStart={[Function]}
-                                          tabIndex={0}
-                                          type="button"
-                                        >
-                                          <span
-                                            className="MuiButton-label"
-                                          >
-                                            delete_grdf_modal.go
-                                          </span>
-                                          <WithStyles(memo)
-                                            center={false}
-                                          >
-                                            <ForwardRef(TouchRipple)
-                                              center={false}
-                                              classes={
-                                                Object {
-                                                  "child": "MuiTouchRipple-child",
-                                                  "childLeaving": "MuiTouchRipple-childLeaving",
-                                                  "childPulsate": "MuiTouchRipple-childPulsate",
-                                                  "ripple": "MuiTouchRipple-ripple",
-                                                  "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                  "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                  "root": "MuiTouchRipple-root",
-                                                }
-                                              }
-                                            >
-                                              <span
-                                                className="MuiTouchRipple-root"
-                                              >
-                                                <TransitionGroup
-                                                  childFactory={[Function]}
-                                                  component={null}
-                                                  exit={true}
-                                                />
-                                              </span>
-                                            </ForwardRef(TouchRipple)>
-                                          </WithStyles(memo)>
-                                        </button>
-                                      </ForwardRef(ButtonBase)>
-                                    </WithStyles(ForwardRef(ButtonBase))>
-                                  </ForwardRef(Button)>
-                                </WithStyles(ForwardRef(Button))>
-                              </div>
-                            </div>
-                          </div>
-                        </ForwardRef(Paper)>
-                      </WithStyles(ForwardRef(Paper))>
-                    </div>
-                  </Transition>
-                </ForwardRef(Fade)>
-                <div
-                  data-test="sentinelEnd"
-                  tabIndex={0}
-                />
-              </Unstable_TrapFocus>
-            </div>
-          </Portal>
-        </ForwardRef(Portal)>
-      </ForwardRef(Modal)>
-    </ForwardRef(Dialog)>
-  </WithStyles(ForwardRef(Dialog))>
-</DeleteGRDFAccountModal>
+<div
+  aria-hidden="true"
+/>
 `;
diff --git a/src/components/Connection/SGEConnect/SgeConnect.scss b/src/components/Connection/SGEConnect/SgeConnect.scss
index 3efc082c18f037e74ad35d53a50985fe47234b69..8e7b745ae7caf6b2ef5fdfbb282cea3e9ec22eb0 100644
--- a/src/components/Connection/SGEConnect/SgeConnect.scss
+++ b/src/components/Connection/SGEConnect/SgeConnect.scss
@@ -55,15 +55,8 @@
         -moz-appearance: textfield;
       }
 
-      .pdl-hint {
-        display: inline-block;
-        cursor: pointer;
-        border-bottom: solid 1px $grey-bright;
-        margin: 0 auto;
-        padding: 0.2rem;
-        @media (min-width: $width-tablet) {
-          margin-left: 0;
-        }
+      .btnText {
+        max-width: 280px;
       }
       ul {
         margin: 0;
diff --git a/src/components/Connection/SGEConnect/SgeConnectView.spec.tsx b/src/components/Connection/SGEConnect/SgeConnectView.spec.tsx
index 8509b13414e275d467eb99d9b5a55c059940c56c..02d958a4e4a22cd6962b356a853e5ca3f4988234 100644
--- a/src/components/Connection/SGEConnect/SgeConnectView.spec.tsx
+++ b/src/components/Connection/SGEConnect/SgeConnectView.spec.tsx
@@ -1,112 +1,38 @@
-import { SgeStep } from 'enums'
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render, screen } from '@testing-library/react'
+import { userEvent } from '@testing-library/user-event'
 import React from 'react'
 import { Provider } from 'react-redux'
 import * as storeHooks from 'store/hooks'
-import { createMockEcolyoStore, mockGlobalState } from 'tests/__mocks__/store'
+import { createMockEcolyoStore } from 'tests/__mocks__/store'
 import SgeConnectView from './SgeConnectView'
 
 jest.mock('components/Content/Content', () => 'mock-content')
 jest.mock('components/Header/CozyBar', () => 'mock-cozybar')
 
 const mockAppDispatch = jest.spyOn(storeHooks, 'useAppDispatch')
+const store = createMockEcolyoStore()
 
 describe('SgeConnectView component', () => {
   beforeEach(() => {
     jest.clearAllMocks()
   })
   it('should be rendered correctly', () => {
-    const store = createMockEcolyoStore()
-    const wrapper = mount(
+    const { container } = render(
       <Provider store={store}>
         <SgeConnectView />
       </Provider>
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
-  })
-  it('should render address Step', () => {
-    const store = createMockEcolyoStore({
-      global: {
-        sgeConnect: {
-          ...mockGlobalState.sgeConnect,
-          currentStep: SgeStep.Address,
-        },
-      },
-    })
-    const wrapper = mount(
-      <Provider store={store}>
-        <SgeConnectView />
-      </Provider>
-    )
-    expect(wrapper.find('.stepAddress')).toBeTruthy()
-  })
-  it('should render identity Step', () => {
-    const store = createMockEcolyoStore({
-      global: {
-        sgeConnect: {
-          ...mockGlobalState.sgeConnect,
-          currentStep: SgeStep.IdentityAndPDL,
-        },
-      },
-    })
-    const wrapper = mount(
-      <Provider store={store}>
-        <SgeConnectView />
-      </Provider>
-    )
-    expect(wrapper.find('.stepIdentity')).toBeTruthy()
-  })
-  it('should render consent Step', () => {
-    const store = createMockEcolyoStore({
-      global: {
-        sgeConnect: {
-          ...mockGlobalState.sgeConnect,
-          currentStep: SgeStep.Consent,
-        },
-      },
-    })
-    const wrapper = mount(
-      <Provider store={store}>
-        <SgeConnectView />
-      </Provider>
-    )
-    expect(wrapper.find('.stepConsent')).toBeTruthy()
-  })
-  it('should render default Step', () => {
-    const store = createMockEcolyoStore({
-      global: {
-        sgeConnect: {
-          ...mockGlobalState.sgeConnect,
-          currentStep: 99,
-        },
-      },
-    })
-    const wrapper = mount(
-      <Provider store={store}>
-        <SgeConnectView />
-      </Provider>
-    )
-    expect(wrapper.find('.stepIdentity')).toBeTruthy()
+    expect(container).toMatchSnapshot()
   })
+
   describe('SgeConnectView Navigation methods', () => {
-    const store = createMockEcolyoStore()
-    it('should call nextStep method', () => {
-      const wrapper = mount(
-        <Provider store={store}>
-          <SgeConnectView />
-        </Provider>
-      )
-      wrapper.find('.btnPrimary').last().simulate('click')
-      expect(mockAppDispatch).toHaveBeenCalled()
-    })
-    it('should not call disabled nextStep method', () => {
-      const wrapper = mount(
+    it('should call nextStep method', async () => {
+      render(
         <Provider store={store}>
           <SgeConnectView />
         </Provider>
       )
-      wrapper.find('.btnPrimary').last().simulate('click')
+      await userEvent.click(screen.getAllByRole('button')[1])
       expect(mockAppDispatch).toHaveBeenCalled()
     })
   })
diff --git a/src/components/Connection/SGEConnect/SgeConnectView.tsx b/src/components/Connection/SGEConnect/SgeConnectView.tsx
index c59382fa73b47645795e15980b7a733f95e96510..d09bc8f7292733bea6dc556aee98b317007192a5 100644
--- a/src/components/Connection/SGEConnect/SgeConnectView.tsx
+++ b/src/components/Connection/SGEConnect/SgeConnectView.tsx
@@ -29,7 +29,7 @@ const SgeConnectView = () => {
   const [isLoading, setIsLoading] = useState(false)
   const [currentSgeState, setCurrentSgeState] = useState<SgeStore>(sgeConnect)
   const [currentStep, setCurrentStep] = useState<SgeStep>(
-    sgeConnect.currentStep
+    SgeStep.IdentityAndPDL
   )
   const [headerHeight, setHeaderHeight] = useState<number>(0)
 
diff --git a/src/components/Connection/SGEConnect/SgeInit.spec.tsx b/src/components/Connection/SGEConnect/SgeInit.spec.tsx
index cd01cfb542a872b7cc810cc3e3db94545f6b4fad..b4789725b6d52711005d5e5ebca6808d409b9f20 100644
--- a/src/components/Connection/SGEConnect/SgeInit.spec.tsx
+++ b/src/components/Connection/SGEConnect/SgeInit.spec.tsx
@@ -1,11 +1,9 @@
-import { Button } from '@material-ui/core'
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render, screen } from '@testing-library/react'
+import { userEvent } from '@testing-library/user-event'
 import React from 'react'
 import { Provider } from 'react-redux'
 import { SgeStatusWithAccount } from 'tests/__mocks__/fluidStatusData.mock'
 import { createMockEcolyoStore, mockGlobalState } from 'tests/__mocks__/store'
-import { waitForComponentToPaint } from 'tests/__mocks__/testUtils'
 import SgeInit from './SgeInit'
 
 const mockedNavigate = jest.fn()
@@ -24,20 +22,20 @@ jest.mock('components/Hooks/useKonnectorAuth', () =>
 describe('SgeInit component', () => {
   const store = createMockEcolyoStore()
   it('should be rendered correctly', () => {
-    const wrapper = mount(
+    const { container } = render(
       <Provider store={store}>
         <SgeInit />
       </Provider>
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
-  it('should go to sge connect steps', () => {
-    const wrapper = mount(
+  it('should go to sge connect steps', async () => {
+    render(
       <Provider store={store}>
         <SgeInit />
       </Provider>
     )
-    wrapper.find(Button).first().simulate('click')
+    await userEvent.click(screen.getAllByRole('button')[0])
     expect(mockedNavigate).toHaveBeenCalled()
   })
   it('should launch account and trigger creation process', async () => {
@@ -51,12 +49,11 @@ describe('SgeInit component', () => {
       },
     })
 
-    const wrapper = mount(
+    render(
       <Provider store={store}>
         <SgeInit />
       </Provider>
     )
-    await waitForComponentToPaint(wrapper)
     expect(mockConnect).toHaveBeenCalled()
   })
   it('should launch existing account update process', async () => {
@@ -70,12 +67,11 @@ describe('SgeInit component', () => {
         },
       },
     })
-    const wrapper = mount(
+    render(
       <Provider store={store}>
         <SgeInit />
       </Provider>
     )
-    await waitForComponentToPaint(wrapper)
     expect(mockUpdate).toHaveBeenCalled()
   })
 })
diff --git a/src/components/Connection/SGEConnect/SgeModalHint.spec.tsx b/src/components/Connection/SGEConnect/SgeModalHint.spec.tsx
index eab06f6c662dab4514e4bfa2d2700f528cade3c2..a9efcf721f220b7a715f2e1793ace2a6a087f6be 100644
--- a/src/components/Connection/SGEConnect/SgeModalHint.spec.tsx
+++ b/src/components/Connection/SGEConnect/SgeModalHint.spec.tsx
@@ -1,19 +1,12 @@
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render } from '@testing-library/react'
 import React from 'react'
-import { Provider } from 'react-redux'
-import { createMockEcolyoStore } from 'tests/__mocks__/store'
 import SgeModalHint from './SgeModalHint'
 
 describe('SgeModalHint component', () => {
   it('should be rendered correctly', () => {
-    const mockClose = jest.fn()
-    const store = createMockEcolyoStore()
-    const wrapper = mount(
-      <Provider store={store}>
-        <SgeModalHint open={true} handleCloseClick={mockClose} />
-      </Provider>
+    const { baseElement } = render(
+      <SgeModalHint open={true} handleCloseClick={jest.fn()} />
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
+    expect(baseElement).toMatchSnapshot()
   })
 })
diff --git a/src/components/Connection/SGEConnect/StepAddress.spec.tsx b/src/components/Connection/SGEConnect/StepAddress.spec.tsx
index 785ca968a3de16578d2baa84243cf8257fdbf9a8..d5aae6a3af4b54692c0c3549c89de48388bd5bf2 100644
--- a/src/components/Connection/SGEConnect/StepAddress.spec.tsx
+++ b/src/components/Connection/SGEConnect/StepAddress.spec.tsx
@@ -1,70 +1,64 @@
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render, screen } from '@testing-library/react'
+import { userEvent } from '@testing-library/user-event'
 import React from 'react'
-import { Provider } from 'react-redux'
-import { createMockEcolyoStore, mockGlobalState } from 'tests/__mocks__/store'
+import { mockGlobalState } from 'tests/__mocks__/store'
 import StepAddress from './StepAddress'
 
 const mockHandleChange = jest.fn()
 
 describe('StepAddress component', () => {
-  const store = createMockEcolyoStore()
   it('should be rendered correctly', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepAddress
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
+    const { container } = render(
+      <StepAddress
+        sgeState={mockGlobalState.sgeConnect}
+        onChange={mockHandleChange}
+      />
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
-  it('should change address value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepAddress
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
-    )
-    wrapper.find('#address').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('address', '')
-  })
-  it('should change zipCode value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
+
+  describe('should change inputs', () => {
+    beforeEach(() => {
+      render(
         <StepAddress
           sgeState={mockGlobalState.sgeConnect}
           onChange={mockHandleChange}
         />
-      </Provider>
-    )
-    wrapper.find('#zipCode').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('zipCode', '', 5)
+      )
+    })
+    it('should change address value', async () => {
+      const input = screen.getByRole('textbox', {
+        name: 'auth.enedissgegrandlyon.address',
+      })
+      await userEvent.type(input, 't')
+      expect(mockHandleChange).toHaveBeenCalledWith('address', 't')
+    })
+    it('should change zipCode value', async () => {
+      const input = screen.getByRole('spinbutton', {
+        name: 'auth.enedissgegrandlyon.zipCode',
+      })
+      await userEvent.type(input, '0')
+      expect(mockHandleChange).toHaveBeenCalledWith('zipCode', '0', 5)
+    })
+
+    it('should change city value', async () => {
+      const input = screen.getByRole('textbox', {
+        name: 'auth.enedissgegrandlyon.city',
+      })
+      await userEvent.type(input, 'c')
+      expect(mockHandleChange).toHaveBeenCalledWith('city', 'c')
+    })
   })
   it('should have an existing zipCode value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepAddress
-          sgeState={{ ...mockGlobalState.sgeConnect, zipCode: 69200 }}
-          onChange={mockHandleChange}
-        />
-      </Provider>
-    )
-    expect(wrapper.find('#zipCode').first().props().value).toBe(69200)
-  })
-  it('should change city value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepAddress
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
+    render(
+      <StepAddress
+        sgeState={{ ...mockGlobalState.sgeConnect, zipCode: 69200 }}
+        onChange={mockHandleChange}
+      />
     )
-    wrapper.find('#city').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('city', '')
+    const input = screen.getByRole('spinbutton', {
+      name: 'auth.enedissgegrandlyon.zipCode',
+    })
+    expect(input).toHaveValue(69200)
   })
 })
diff --git a/src/components/Connection/SGEConnect/StepConsent.spec.tsx b/src/components/Connection/SGEConnect/StepConsent.spec.tsx
index c2ca84554bed9594ee4cbedefd83143ca964127e..ebca791acb68896b788aee05439f6c553790e861 100644
--- a/src/components/Connection/SGEConnect/StepConsent.spec.tsx
+++ b/src/components/Connection/SGEConnect/StepConsent.spec.tsx
@@ -1,47 +1,39 @@
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render, screen } from '@testing-library/react'
+import { userEvent } from '@testing-library/user-event'
 import React from 'react'
-import { Provider } from 'react-redux'
-import { createMockEcolyoStore, mockGlobalState } from 'tests/__mocks__/store'
+import { mockGlobalState } from 'tests/__mocks__/store'
 import StepConsent from './StepConsent'
 
 const mockHandleChange = jest.fn()
 
 describe('StepConsent component', () => {
-  const store = createMockEcolyoStore()
   it('should be rendered correctly', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepConsent
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
+    const { container } = render(
+      <StepConsent
+        sgeState={mockGlobalState.sgeConnect}
+        onChange={mockHandleChange}
+      />
     )
-    expect(toJson(wrapper)).toMatchSnapshot()
+    expect(container).toMatchSnapshot()
   })
-  it('should change pdlConfirm value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepConsent
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
-    )
-    wrapper.find('#pdlConfirm').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('pdlConfirm', false)
-  })
-  it('should change dataConsent value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepConsent
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
+
+  it('should change dataConsent and pdlConfirm value', async () => {
+    render(
+      <StepConsent
+        sgeState={mockGlobalState.sgeConnect}
+        onChange={mockHandleChange}
+      />
     )
-    wrapper.find('#dataConsent').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('dataConsent', false)
+    const consentCheckbox = screen.getByRole('checkbox', {
+      name: 'auth.enedissgegrandlyon.consentCheck1',
+    })
+    await userEvent.click(consentCheckbox)
+    expect(mockHandleChange).toHaveBeenCalledWith('dataConsent', true)
+
+    const pdlCheckbox = screen.getByRole('checkbox', {
+      name: 'auth.enedissgegrandlyon.consentCheck2',
+    })
+    await userEvent.click(pdlCheckbox)
+    expect(mockHandleChange).toHaveBeenCalledWith('pdlConfirm', true)
   })
 })
diff --git a/src/components/Connection/SGEConnect/StepIdentityAndPdl.spec.tsx b/src/components/Connection/SGEConnect/StepIdentityAndPdl.spec.tsx
index 562541f5d959e1480967fe4c37ccec4fe39de638..88ac266d83c8d89262674911480394e8a452e0e3 100644
--- a/src/components/Connection/SGEConnect/StepIdentityAndPdl.spec.tsx
+++ b/src/components/Connection/SGEConnect/StepIdentityAndPdl.spec.tsx
@@ -1,82 +1,71 @@
-import { mount } from 'enzyme'
-import toJson from 'enzyme-to-json'
+import { render, screen } from '@testing-library/react'
+import userEvent from '@testing-library/user-event'
 import React from 'react'
-import { Provider } from 'react-redux'
-import { createMockEcolyoStore, mockGlobalState } from 'tests/__mocks__/store'
+import { mockGlobalState } from 'tests/__mocks__/store'
 import StepIdentityAndPdl from './StepIdentityAndPdl'
 
 const mockHandleChange = jest.fn()
 
 describe('StepIdentityAndPdl component', () => {
-  const store = createMockEcolyoStore()
   it('should be rendered correctly', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepIdentityAndPdl
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
-    )
-    expect(toJson(wrapper)).toMatchSnapshot()
-  })
-  it('should change firstName value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepIdentityAndPdl
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
+    const { container } = render(
+      <StepIdentityAndPdl
+        sgeState={mockGlobalState.sgeConnect}
+        onChange={mockHandleChange}
+      />
     )
-    wrapper.find('#firstName').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('firstName', '')
+    expect(container).toMatchSnapshot()
   })
-  it('should change lastName value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepIdentityAndPdl
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
-    )
-    wrapper.find('#lastName').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('lastName', '')
-  })
-  it('should change pdl value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepIdentityAndPdl
-          sgeState={mockGlobalState.sgeConnect}
-          onChange={mockHandleChange}
-        />
-      </Provider>
-    )
-    wrapper.find('#pdl').first().simulate('change')
-    expect(mockHandleChange).toHaveBeenCalledWith('pdl', '', 14)
-  })
-  it('should open hint modal', () => {
-    const wrapper = mount(
-      <Provider store={store}>
+
+  describe('should change fields', () => {
+    beforeEach(() => {
+      jest.clearAllMocks()
+      render(
         <StepIdentityAndPdl
           sgeState={mockGlobalState.sgeConnect}
           onChange={mockHandleChange}
         />
-      </Provider>
-    )
-    wrapper.find('.pdl-hint').first().simulate('click')
-    expect(wrapper.find('.sgeHintModal')).toBeTruthy()
+      )
+    })
+    it('should change firstName value', async () => {
+      const firstNameInput = screen.getByRole('textbox', {
+        name: 'auth.enedissgegrandlyon.firstName',
+      })
+      await userEvent.type(firstNameInput, 'n')
+      expect(mockHandleChange).toHaveBeenCalledWith('firstName', 'n')
+    })
+    it('should change lastName value', async () => {
+      const lastNameInput = screen.getByRole('textbox', {
+        name: 'auth.enedissgegrandlyon.lastName',
+      })
+      await userEvent.type(lastNameInput, 'n')
+      expect(mockHandleChange).toHaveBeenCalledWith('lastName', 'n')
+    })
+    it('should change pdl value', async () => {
+      const pdlInput = screen.getByRole('spinbutton', {
+        name: 'auth.enedissgegrandlyon.pdlLabel',
+      })
+      await userEvent.type(pdlInput, '0')
+      expect(mockHandleChange).toHaveBeenCalledWith('pdl', '0', 14)
+    })
+    it('should open hint modal', async () => {
+      const pdlHint = screen.getByRole('button', {
+        name: 'auth.enedissgegrandlyon.pdlHint',
+      })
+      await userEvent.click(pdlHint)
+      expect(screen.getByRole('dialog')).toBeInTheDocument()
+    })
   })
   it('should have an existing pdl value', () => {
-    const wrapper = mount(
-      <Provider store={store}>
-        <StepIdentityAndPdl
-          sgeState={{ ...mockGlobalState.sgeConnect, pdl: 11111111111111 }}
-          onChange={mockHandleChange}
-        />
-      </Provider>
+    render(
+      <StepIdentityAndPdl
+        sgeState={{ ...mockGlobalState.sgeConnect, pdl: 11111111111111 }}
+        onChange={mockHandleChange}
+      />
     )
-    expect(wrapper.find('#pdl').first().props().value).toBe(11111111111111)
+    const pdlInput = screen.getByRole('spinbutton', {
+      name: 'auth.enedissgegrandlyon.pdlLabel',
+    })
+    expect(pdlInput).toHaveValue(11111111111111)
   })
 })
diff --git a/src/components/Connection/SGEConnect/StepIdentityAndPdl.tsx b/src/components/Connection/SGEConnect/StepIdentityAndPdl.tsx
index d0bb45419f456d4b6919c9b2a9a55429fdd64347..973590f570cb079d9c29d13d8d0ec416c1fc9716 100644
--- a/src/components/Connection/SGEConnect/StepIdentityAndPdl.tsx
+++ b/src/components/Connection/SGEConnect/StepIdentityAndPdl.tsx
@@ -1,7 +1,8 @@
+import { Button } from '@material-ui/core'
 import SgeModalHint from 'components/Connection/SGEConnect/SgeModalHint'
 import { useI18n } from 'cozy-ui/transpiled/react/I18n'
 import { SgeStore } from 'models'
-import React, { useCallback, useState } from 'react'
+import React, { useState } from 'react'
 import { SGEKeysForm } from './SgeConnectView'
 
 interface StepIdentityAndPdlProps {
@@ -19,9 +20,7 @@ const StepIdentityAndPdl = ({
 }: StepIdentityAndPdlProps) => {
   const { t } = useI18n()
   const [openHintModal, setOpenHintModal] = useState<boolean>(false)
-  const toggleModal = useCallback(() => {
-    setOpenHintModal(prev => !prev)
-  }, [])
+  const toggleModal = () => setOpenHintModal(prev => !prev)
 
   return (
     <div className="sge-step-container stepIdentity">
@@ -69,9 +68,9 @@ const StepIdentityAndPdl = ({
           required
         />
       </label>
-      <div onClick={toggleModal} className="pdl-hint text-16-normal">
+      <Button className="btnText" onClick={toggleModal}>
         {t('auth.enedissgegrandlyon.pdlHint')}
-      </div>
+      </Button>
       <SgeModalHint open={openHintModal} handleCloseClick={toggleModal} />
     </div>
   )
diff --git a/src/components/Connection/SGEConnect/__snapshots__/SgeConnectView.spec.tsx.snap b/src/components/Connection/SGEConnect/__snapshots__/SgeConnectView.spec.tsx.snap
index 6c4db1b337fdf82cb0b628585b76aedcdf4d46e8..eb140eabe34b85276bf8f402c4a3114b07fb7b51 100644
--- a/src/components/Connection/SGEConnect/__snapshots__/SgeConnectView.spec.tsx.snap
+++ b/src/components/Connection/SGEConnect/__snapshots__/SgeConnectView.spec.tsx.snap
@@ -1,1019 +1,214 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`SgeConnectView component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <SgeConnectView>
-    <mock-cozybar
-      displayBackArrow={true}
-      titleKey="common.title_sge_connect"
-    />
-    <Header
-      desktopTitleKey="common.title_sge_connect"
-      displayBackArrow={true}
-      setHeaderHeight={[Function]}
+<div>
+  <mock-cozybar
+    displaybackarrow="true"
+    titlekey="common.title_sge_connect"
+  />
+  <div
+    class="header"
+  >
+    <div
+      class="header-top"
     >
       <div
-        className="header"
+        class="header-content"
       >
         <div
-          className="header-top"
+          class="header-content-top"
         >
           <div
-            className="header-content"
+            class="header-text-desktop text-14-normal-uppercase"
           >
-            <div
-              className="header-content-top"
+            <button
+              aria-label="header.accessibility.button_back"
+              class="MuiButtonBase-root MuiIconButton-root header-back-button"
+              tabindex="0"
+              type="button"
             >
-              <div
-                className="header-text-desktop text-14-normal-uppercase"
-              >
-                <WithStyles(ForwardRef(IconButton))
-                  aria-label="header.accessibility.button_back"
-                  className="header-back-button"
-                  onClick={[Function]}
-                >
-                  <ForwardRef(IconButton)
-                    aria-label="header.accessibility.button_back"
-                    className="header-back-button"
-                    classes={
-                      Object {
-                        "colorInherit": "MuiIconButton-colorInherit",
-                        "colorPrimary": "MuiIconButton-colorPrimary",
-                        "colorSecondary": "MuiIconButton-colorSecondary",
-                        "disabled": "Mui-disabled",
-                        "edgeEnd": "MuiIconButton-edgeEnd",
-                        "edgeStart": "MuiIconButton-edgeStart",
-                        "label": "MuiIconButton-label",
-                        "root": "MuiIconButton-root",
-                        "sizeSmall": "MuiIconButton-sizeSmall",
-                      }
-                    }
-                    onClick={[Function]}
-                  >
-                    <WithStyles(ForwardRef(ButtonBase))
-                      aria-label="header.accessibility.button_back"
-                      centerRipple={true}
-                      className="MuiIconButton-root header-back-button"
-                      disabled={false}
-                      focusRipple={true}
-                      onClick={[Function]}
-                    >
-                      <ForwardRef(ButtonBase)
-                        aria-label="header.accessibility.button_back"
-                        centerRipple={true}
-                        className="MuiIconButton-root header-back-button"
-                        classes={
-                          Object {
-                            "disabled": "Mui-disabled",
-                            "focusVisible": "Mui-focusVisible",
-                            "root": "MuiButtonBase-root",
-                          }
-                        }
-                        disabled={false}
-                        focusRipple={true}
-                        onClick={[Function]}
-                      >
-                        <button
-                          aria-label="header.accessibility.button_back"
-                          className="MuiButtonBase-root MuiIconButton-root header-back-button"
-                          disabled={false}
-                          onBlur={[Function]}
-                          onClick={[Function]}
-                          onDragLeave={[Function]}
-                          onFocus={[Function]}
-                          onKeyDown={[Function]}
-                          onKeyUp={[Function]}
-                          onMouseDown={[Function]}
-                          onMouseLeave={[Function]}
-                          onMouseUp={[Function]}
-                          onTouchEnd={[Function]}
-                          onTouchMove={[Function]}
-                          onTouchStart={[Function]}
-                          tabIndex={0}
-                          type="button"
-                        >
-                          <span
-                            className="MuiIconButton-label"
-                          >
-                            <Icon
-                              icon="test-file-stub"
-                              size={16}
-                              spin={false}
-                            >
-                              <Component
-                                className="styles__icon___23x3R"
-                                height={16}
-                                style={Object {}}
-                                width={16}
-                              >
-                                <svg
-                                  className="styles__icon___23x3R"
-                                  height={16}
-                                  style={Object {}}
-                                  width={16}
-                                >
-                                  <use
-                                    xlinkHref="#test-file-stub"
-                                  />
-                                </svg>
-                              </Component>
-                            </Icon>
-                          </span>
-                          <WithStyles(memo)
-                            center={true}
-                          >
-                            <ForwardRef(TouchRipple)
-                              center={true}
-                              classes={
-                                Object {
-                                  "child": "MuiTouchRipple-child",
-                                  "childLeaving": "MuiTouchRipple-childLeaving",
-                                  "childPulsate": "MuiTouchRipple-childPulsate",
-                                  "ripple": "MuiTouchRipple-ripple",
-                                  "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                  "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                  "root": "MuiTouchRipple-root",
-                                }
-                              }
-                            >
-                              <span
-                                className="MuiTouchRipple-root"
-                              >
-                                <TransitionGroup
-                                  childFactory={[Function]}
-                                  component={null}
-                                  exit={true}
-                                />
-                              </span>
-                            </ForwardRef(TouchRipple)>
-                          </WithStyles(memo)>
-                        </button>
-                      </ForwardRef(ButtonBase)>
-                    </WithStyles(ForwardRef(ButtonBase))>
-                  </ForwardRef(IconButton)>
-                </WithStyles(ForwardRef(IconButton))>
-                <span>
-                  common.title_sge_connect
-                </span>
-              </div>
-              <WithStyles(ForwardRef(IconButton))
-                aria-label="header.accessibility.button_open_feedbacks"
-                className="header-feedbacks-button"
-                onClick={[Function]}
+              <span
+                class="MuiIconButton-label"
               >
-                <ForwardRef(IconButton)
-                  aria-label="header.accessibility.button_open_feedbacks"
-                  className="header-feedbacks-button"
-                  classes={
-                    Object {
-                      "colorInherit": "MuiIconButton-colorInherit",
-                      "colorPrimary": "MuiIconButton-colorPrimary",
-                      "colorSecondary": "MuiIconButton-colorSecondary",
-                      "disabled": "Mui-disabled",
-                      "edgeEnd": "MuiIconButton-edgeEnd",
-                      "edgeStart": "MuiIconButton-edgeStart",
-                      "label": "MuiIconButton-label",
-                      "root": "MuiIconButton-root",
-                      "sizeSmall": "MuiIconButton-sizeSmall",
-                    }
-                  }
-                  onClick={[Function]}
+                <svg
+                  class="styles__icon___23x3R"
+                  height="16"
+                  width="16"
                 >
-                  <WithStyles(ForwardRef(ButtonBase))
-                    aria-label="header.accessibility.button_open_feedbacks"
-                    centerRipple={true}
-                    className="MuiIconButton-root header-feedbacks-button"
-                    disabled={false}
-                    focusRipple={true}
-                    onClick={[Function]}
-                  >
-                    <ForwardRef(ButtonBase)
-                      aria-label="header.accessibility.button_open_feedbacks"
-                      centerRipple={true}
-                      className="MuiIconButton-root header-feedbacks-button"
-                      classes={
-                        Object {
-                          "disabled": "Mui-disabled",
-                          "focusVisible": "Mui-focusVisible",
-                          "root": "MuiButtonBase-root",
-                        }
-                      }
-                      disabled={false}
-                      focusRipple={true}
-                      onClick={[Function]}
-                    >
-                      <button
-                        aria-label="header.accessibility.button_open_feedbacks"
-                        className="MuiButtonBase-root MuiIconButton-root header-feedbacks-button"
-                        disabled={false}
-                        onBlur={[Function]}
-                        onClick={[Function]}
-                        onDragLeave={[Function]}
-                        onFocus={[Function]}
-                        onKeyDown={[Function]}
-                        onKeyUp={[Function]}
-                        onMouseDown={[Function]}
-                        onMouseLeave={[Function]}
-                        onMouseUp={[Function]}
-                        onTouchEnd={[Function]}
-                        onTouchMove={[Function]}
-                        onTouchStart={[Function]}
-                        tabIndex={0}
-                        type="button"
-                      >
-                        <span
-                          className="MuiIconButton-label"
-                        >
-                          <Icon
-                            icon="test-file-stub"
-                            size={40}
-                            spin={false}
-                          >
-                            <Component
-                              className="styles__icon___23x3R"
-                              height={40}
-                              style={Object {}}
-                              width={40}
-                            >
-                              <svg
-                                className="styles__icon___23x3R"
-                                height={40}
-                                style={Object {}}
-                                width={40}
-                              >
-                                <use
-                                  xlinkHref="#test-file-stub"
-                                />
-                              </svg>
-                            </Component>
-                          </Icon>
-                        </span>
-                        <WithStyles(memo)
-                          center={true}
-                        >
-                          <ForwardRef(TouchRipple)
-                            center={true}
-                            classes={
-                              Object {
-                                "child": "MuiTouchRipple-child",
-                                "childLeaving": "MuiTouchRipple-childLeaving",
-                                "childPulsate": "MuiTouchRipple-childPulsate",
-                                "ripple": "MuiTouchRipple-ripple",
-                                "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                "root": "MuiTouchRipple-root",
-                              }
-                            }
-                          >
-                            <span
-                              className="MuiTouchRipple-root"
-                            >
-                              <TransitionGroup
-                                childFactory={[Function]}
-                                component={null}
-                                exit={true}
-                              />
-                            </span>
-                          </ForwardRef(TouchRipple)>
-                        </WithStyles(memo)>
-                      </button>
-                    </ForwardRef(ButtonBase)>
-                  </WithStyles(ForwardRef(ButtonBase))>
-                </ForwardRef(IconButton)>
-              </WithStyles(ForwardRef(IconButton))>
-            </div>
+                  <use
+                    xlink:href="#test-file-stub"
+                  />
+                </svg>
+              </span>
+              <span
+                class="MuiTouchRipple-root"
+              />
+            </button>
+            <span>
+              common.title_sge_connect
+            </span>
           </div>
+          <button
+            aria-label="header.accessibility.button_open_feedbacks"
+            class="MuiButtonBase-root MuiIconButton-root header-feedbacks-button"
+            tabindex="0"
+            type="button"
+          >
+            <span
+              class="MuiIconButton-label"
+            >
+              <svg
+                class="styles__icon___23x3R"
+                height="40"
+                width="40"
+              >
+                <use
+                  xlink:href="#test-file-stub"
+                />
+              </svg>
+            </span>
+            <span
+              class="MuiTouchRipple-root"
+            />
+          </button>
         </div>
-        <div
-          className="header-bar"
-        />
       </div>
-    </Header>
-    <mock-content
-      heightOffset={-48}
+    </div>
+    <div
+      class="header-bar"
+    />
+  </div>
+  <mock-content
+    heightoffset="-48"
+  >
+    <div
+      class="sge-view"
     >
       <div
-        className="sge-view"
+        class="sge-container"
       >
         <div
-          className="sge-container"
+          class="profile-type-progress"
         >
-          <FormProgress
-            formType="sge"
-            step={0}
+          <div
+            class="profile-type-progress-label"
           >
-            <div
-              className="profile-type-progress"
-            >
-              <div
-                className="profile-type-progress-label"
-              >
-                1
-                %
-              </div>
-              <div
-                className="profile-type-progress-bar-container"
-              >
-                <div
-                  className="profile-type-progress-bar-content"
-                  style={
-                    Object {
-                      "width": "1%",
-                    }
-                  }
-                />
-              </div>
-            </div>
-          </FormProgress>
-          <StepIdentityAndPdl
-            onChange={[Function]}
-            sgeState={
-              Object {
-                "address": "",
-                "city": "",
-                "currentStep": 0,
-                "dataConsent": false,
-                "firstName": "",
-                "lastName": "",
-                "pdl": null,
-                "pdlConfirm": false,
-                "shouldLaunchAccount": false,
-                "zipCode": null,
-              }
-            }
+            1
+            %
+          </div>
+          <div
+            class="profile-type-progress-bar-container"
           >
             <div
-              className="sge-step-container stepIdentity"
-            >
-              <div
-                className="title text-22-bold"
-              >
-                auth.enedissgegrandlyon.identityTitle
-              </div>
-              <label
-                className="text-16-normal"
-                htmlFor="firstName"
-              >
-                auth.enedissgegrandlyon.firstName
-                <input
-                  className="inputText"
-                  id="firstName"
-                  name="firstName"
-                  onChange={[Function]}
-                  required={true}
-                  type="text"
-                  value=""
-                />
-              </label>
-              <label
-                className="text-16-normal"
-                htmlFor="lastName"
-              >
-                auth.enedissgegrandlyon.lastName
-                <input
-                  className="inputText"
-                  id="lastName"
-                  name="lastName"
-                  onChange={[Function]}
-                  required={true}
-                  type="text"
-                  value=""
-                />
-              </label>
-              <div
-                className="title text-22-bold"
-              >
-                auth.enedissgegrandlyon.pdlTitle
-              </div>
-              <label
-                className="text-16-normal"
-                htmlFor="pdl"
-              >
-                auth.enedissgegrandlyon.pdlLabel
-                <input
-                  className="inputText"
-                  id="pdl"
-                  inputMode="numeric"
-                  min={0}
-                  name="pdl"
-                  onChange={[Function]}
-                  required={true}
-                  type="number"
-                />
-              </label>
-              <div
-                className="pdl-hint text-16-normal"
-                onClick={[Function]}
-              >
-                auth.enedissgegrandlyon.pdlHint
-              </div>
-              <SgeModalHint
-                handleCloseClick={[Function]}
-                open={false}
-              >
-                <WithStyles(ForwardRef(Dialog))
-                  aria-labelledby="accessibility-title"
-                  classes={
-                    Object {
-                      "paper": "modal-paper",
-                      "root": "modal-root",
-                    }
-                  }
-                  disableEscapeKeyDown={true}
-                  onClose={[Function]}
-                  open={false}
-                >
-                  <ForwardRef(Dialog)
-                    aria-labelledby="accessibility-title"
-                    classes={
-                      Object {
-                        "container": "MuiDialog-container",
-                        "paper": "MuiDialog-paper modal-paper",
-                        "paperFullScreen": "MuiDialog-paperFullScreen",
-                        "paperFullWidth": "MuiDialog-paperFullWidth",
-                        "paperScrollBody": "MuiDialog-paperScrollBody",
-                        "paperScrollPaper": "MuiDialog-paperScrollPaper",
-                        "paperWidthFalse": "MuiDialog-paperWidthFalse",
-                        "paperWidthLg": "MuiDialog-paperWidthLg",
-                        "paperWidthMd": "MuiDialog-paperWidthMd",
-                        "paperWidthSm": "MuiDialog-paperWidthSm",
-                        "paperWidthXl": "MuiDialog-paperWidthXl",
-                        "paperWidthXs": "MuiDialog-paperWidthXs",
-                        "root": "MuiDialog-root modal-root",
-                        "scrollBody": "MuiDialog-scrollBody",
-                        "scrollPaper": "MuiDialog-scrollPaper",
-                      }
-                    }
-                    disableEscapeKeyDown={true}
-                    onClose={[Function]}
-                    open={false}
-                  >
-                    <ForwardRef(Modal)
-                      BackdropComponent={
-                        Object {
-                          "$$typeof": Symbol(react.forward_ref),
-                          "Naked": Object {
-                            "$$typeof": Symbol(react.forward_ref),
-                            "propTypes": Object {
-                              "children": [Function],
-                              "className": [Function],
-                              "classes": [Function],
-                              "invisible": [Function],
-                              "open": [Function],
-                              "transitionDuration": [Function],
-                            },
-                            "render": [Function],
-                          },
-                          "displayName": "WithStyles(ForwardRef(Backdrop))",
-                          "options": Object {
-                            "defaultTheme": Object {
-                              "breakpoints": Object {
-                                "between": [Function],
-                                "down": [Function],
-                                "keys": Array [
-                                  "xs",
-                                  "sm",
-                                  "md",
-                                  "lg",
-                                  "xl",
-                                ],
-                                "only": [Function],
-                                "up": [Function],
-                                "values": Object {
-                                  "lg": 1280,
-                                  "md": 960,
-                                  "sm": 600,
-                                  "xl": 1920,
-                                  "xs": 0,
-                                },
-                                "width": [Function],
-                              },
-                              "direction": "ltr",
-                              "mixins": Object {
-                                "gutters": [Function],
-                                "toolbar": Object {
-                                  "@media (min-width:0px) and (orientation: landscape)": Object {
-                                    "minHeight": 48,
-                                  },
-                                  "@media (min-width:600px)": Object {
-                                    "minHeight": 64,
-                                  },
-                                  "minHeight": 56,
-                                },
-                              },
-                              "overrides": Object {},
-                              "palette": Object {
-                                "action": Object {
-                                  "activatedOpacity": 0.12,
-                                  "active": "rgba(0, 0, 0, 0.54)",
-                                  "disabled": "rgba(0, 0, 0, 0.26)",
-                                  "disabledBackground": "rgba(0, 0, 0, 0.12)",
-                                  "disabledOpacity": 0.38,
-                                  "focus": "rgba(0, 0, 0, 0.12)",
-                                  "focusOpacity": 0.12,
-                                  "hover": "rgba(0, 0, 0, 0.04)",
-                                  "hoverOpacity": 0.04,
-                                  "selected": "rgba(0, 0, 0, 0.08)",
-                                  "selectedOpacity": 0.08,
-                                },
-                                "augmentColor": [Function],
-                                "background": Object {
-                                  "default": "#fafafa",
-                                  "paper": "#fff",
-                                },
-                                "common": Object {
-                                  "black": "#000",
-                                  "white": "#fff",
-                                },
-                                "contrastThreshold": 3,
-                                "divider": "rgba(0, 0, 0, 0.12)",
-                                "error": Object {
-                                  "contrastText": "#fff",
-                                  "dark": "#d32f2f",
-                                  "light": "#e57373",
-                                  "main": "#f44336",
-                                },
-                                "getContrastText": [Function],
-                                "grey": Object {
-                                  "100": "#f5f5f5",
-                                  "200": "#eeeeee",
-                                  "300": "#e0e0e0",
-                                  "400": "#bdbdbd",
-                                  "50": "#fafafa",
-                                  "500": "#9e9e9e",
-                                  "600": "#757575",
-                                  "700": "#616161",
-                                  "800": "#424242",
-                                  "900": "#212121",
-                                  "A100": "#d5d5d5",
-                                  "A200": "#aaaaaa",
-                                  "A400": "#303030",
-                                  "A700": "#616161",
-                                },
-                                "info": Object {
-                                  "contrastText": "#fff",
-                                  "dark": "#1976d2",
-                                  "light": "#64b5f6",
-                                  "main": "#2196f3",
-                                },
-                                "primary": Object {
-                                  "contrastText": "#fff",
-                                  "dark": "#303f9f",
-                                  "light": "#7986cb",
-                                  "main": "#3f51b5",
-                                },
-                                "secondary": Object {
-                                  "contrastText": "#fff",
-                                  "dark": "#c51162",
-                                  "light": "#ff4081",
-                                  "main": "#f50057",
-                                },
-                                "success": Object {
-                                  "contrastText": "rgba(0, 0, 0, 0.87)",
-                                  "dark": "#388e3c",
-                                  "light": "#81c784",
-                                  "main": "#4caf50",
-                                },
-                                "text": Object {
-                                  "disabled": "rgba(0, 0, 0, 0.38)",
-                                  "hint": "rgba(0, 0, 0, 0.38)",
-                                  "primary": "rgba(0, 0, 0, 0.87)",
-                                  "secondary": "rgba(0, 0, 0, 0.54)",
-                                },
-                                "tonalOffset": 0.2,
-                                "type": "light",
-                                "warning": Object {
-                                  "contrastText": "rgba(0, 0, 0, 0.87)",
-                                  "dark": "#f57c00",
-                                  "light": "#ffb74d",
-                                  "main": "#ff9800",
-                                },
-                              },
-                              "props": Object {},
-                              "shadows": Array [
-                                "none",
-                                "0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12)",
-                                "0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12)",
-                                "0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12)",
-                                "0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)",
-                                "0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)",
-                                "0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)",
-                                "0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)",
-                                "0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)",
-                                "0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)",
-                                "0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)",
-                                "0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)",
-                                "0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)",
-                                "0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)",
-                                "0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)",
-                                "0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)",
-                                "0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)",
-                                "0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)",
-                                "0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)",
-                                "0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)",
-                                "0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)",
-                                "0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)",
-                                "0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)",
-                                "0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)",
-                                "0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)",
-                              ],
-                              "shape": Object {
-                                "borderRadius": 4,
-                              },
-                              "spacing": [Function],
-                              "transitions": Object {
-                                "create": [Function],
-                                "duration": Object {
-                                  "complex": 375,
-                                  "enteringScreen": 225,
-                                  "leavingScreen": 195,
-                                  "short": 250,
-                                  "shorter": 200,
-                                  "shortest": 150,
-                                  "standard": 300,
-                                },
-                                "easing": Object {
-                                  "easeIn": "cubic-bezier(0.4, 0, 1, 1)",
-                                  "easeInOut": "cubic-bezier(0.4, 0, 0.2, 1)",
-                                  "easeOut": "cubic-bezier(0.0, 0, 0.2, 1)",
-                                  "sharp": "cubic-bezier(0.4, 0, 0.6, 1)",
-                                },
-                                "getAutoHeightDuration": [Function],
-                              },
-                              "typography": Object {
-                                "body1": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "1rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0.00938em",
-                                  "lineHeight": 1.5,
-                                },
-                                "body2": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "0.875rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0.01071em",
-                                  "lineHeight": 1.43,
-                                },
-                                "button": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "0.875rem",
-                                  "fontWeight": 500,
-                                  "letterSpacing": "0.02857em",
-                                  "lineHeight": 1.75,
-                                  "textTransform": "uppercase",
-                                },
-                                "caption": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "0.75rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0.03333em",
-                                  "lineHeight": 1.66,
-                                },
-                                "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                "fontSize": 14,
-                                "fontWeightBold": 700,
-                                "fontWeightLight": 300,
-                                "fontWeightMedium": 500,
-                                "fontWeightRegular": 400,
-                                "h1": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "6rem",
-                                  "fontWeight": 300,
-                                  "letterSpacing": "-0.01562em",
-                                  "lineHeight": 1.167,
-                                },
-                                "h2": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "3.75rem",
-                                  "fontWeight": 300,
-                                  "letterSpacing": "-0.00833em",
-                                  "lineHeight": 1.2,
-                                },
-                                "h3": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "3rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0em",
-                                  "lineHeight": 1.167,
-                                },
-                                "h4": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "2.125rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0.00735em",
-                                  "lineHeight": 1.235,
-                                },
-                                "h5": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "1.5rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0em",
-                                  "lineHeight": 1.334,
-                                },
-                                "h6": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "1.25rem",
-                                  "fontWeight": 500,
-                                  "letterSpacing": "0.0075em",
-                                  "lineHeight": 1.6,
-                                },
-                                "htmlFontSize": 16,
-                                "overline": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "0.75rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0.08333em",
-                                  "lineHeight": 2.66,
-                                  "textTransform": "uppercase",
-                                },
-                                "pxToRem": [Function],
-                                "round": [Function],
-                                "subtitle1": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "1rem",
-                                  "fontWeight": 400,
-                                  "letterSpacing": "0.00938em",
-                                  "lineHeight": 1.75,
-                                },
-                                "subtitle2": Object {
-                                  "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                                  "fontSize": "0.875rem",
-                                  "fontWeight": 500,
-                                  "letterSpacing": "0.00714em",
-                                  "lineHeight": 1.57,
-                                },
-                              },
-                              "zIndex": Object {
-                                "appBar": 1100,
-                                "drawer": 1200,
-                                "mobileStepper": 1000,
-                                "modal": 1300,
-                                "snackbar": 1400,
-                                "speedDial": 1050,
-                                "tooltip": 1500,
-                              },
-                            },
-                            "name": "MuiBackdrop",
-                          },
-                          "propTypes": Object {
-                            "classes": [Function],
-                            "innerRef": [Function],
-                          },
-                          "render": [Function],
-                          "useStyles": [Function],
-                        }
-                      }
-                      BackdropProps={
-                        Object {
-                          "transitionDuration": Object {
-                            "enter": 225,
-                            "exit": 195,
-                          },
-                        }
-                      }
-                      className="MuiDialog-root modal-root"
-                      closeAfterTransition={true}
-                      disableEscapeKeyDown={true}
-                      onClose={[Function]}
-                      open={false}
-                    />
-                  </ForwardRef(Dialog)>
-                </WithStyles(ForwardRef(Dialog))>
-              </SgeModalHint>
-            </div>
-          </StepIdentityAndPdl>
+              class="profile-type-progress-bar-content"
+              style="width: 1%;"
+            />
+          </div>
         </div>
-        <FormNavigation
-          disableNextButton={true}
-          disablePrevButton={true}
-          handleNext={[Function]}
-          handlePrevious={[Function]}
-          isEcogesture={false}
-          isLastConnectStep={false}
-          isLoading={false}
-          step={0}
+        <div
+          class="sge-step-container stepIdentity"
         >
           <div
-            className="profile-navigation"
+            class="title text-22-bold"
           >
-            <WithStyles(ForwardRef(Button))
-              aria-label="profile_type.accessibility.button_previous"
-              className="btnSecondary"
-              disabled={true}
-              onClick={[Function]}
-            >
-              <ForwardRef(Button)
-                aria-label="profile_type.accessibility.button_previous"
-                className="btnSecondary"
-                classes={
-                  Object {
-                    "colorInherit": "MuiButton-colorInherit",
-                    "contained": "MuiButton-contained",
-                    "containedPrimary": "MuiButton-containedPrimary",
-                    "containedSecondary": "MuiButton-containedSecondary",
-                    "containedSizeLarge": "MuiButton-containedSizeLarge",
-                    "containedSizeSmall": "MuiButton-containedSizeSmall",
-                    "disableElevation": "MuiButton-disableElevation",
-                    "disabled": "Mui-disabled",
-                    "endIcon": "MuiButton-endIcon",
-                    "focusVisible": "Mui-focusVisible",
-                    "fullWidth": "MuiButton-fullWidth",
-                    "iconSizeLarge": "MuiButton-iconSizeLarge",
-                    "iconSizeMedium": "MuiButton-iconSizeMedium",
-                    "iconSizeSmall": "MuiButton-iconSizeSmall",
-                    "label": "MuiButton-label",
-                    "outlined": "MuiButton-outlined",
-                    "outlinedPrimary": "MuiButton-outlinedPrimary",
-                    "outlinedSecondary": "MuiButton-outlinedSecondary",
-                    "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                    "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                    "root": "MuiButton-root",
-                    "sizeLarge": "MuiButton-sizeLarge",
-                    "sizeSmall": "MuiButton-sizeSmall",
-                    "startIcon": "MuiButton-startIcon",
-                    "text": "MuiButton-text",
-                    "textPrimary": "MuiButton-textPrimary",
-                    "textSecondary": "MuiButton-textSecondary",
-                    "textSizeLarge": "MuiButton-textSizeLarge",
-                    "textSizeSmall": "MuiButton-textSizeSmall",
-                  }
-                }
-                disabled={true}
-                onClick={[Function]}
-              >
-                <WithStyles(ForwardRef(ButtonBase))
-                  aria-label="profile_type.accessibility.button_previous"
-                  className="MuiButton-root MuiButton-text btnSecondary Mui-disabled"
-                  component="button"
-                  disabled={true}
-                  focusRipple={true}
-                  focusVisibleClassName="Mui-focusVisible"
-                  onClick={[Function]}
-                  type="button"
-                >
-                  <ForwardRef(ButtonBase)
-                    aria-label="profile_type.accessibility.button_previous"
-                    className="MuiButton-root MuiButton-text btnSecondary Mui-disabled"
-                    classes={
-                      Object {
-                        "disabled": "Mui-disabled",
-                        "focusVisible": "Mui-focusVisible",
-                        "root": "MuiButtonBase-root",
-                      }
-                    }
-                    component="button"
-                    disabled={true}
-                    focusRipple={true}
-                    focusVisibleClassName="Mui-focusVisible"
-                    onClick={[Function]}
-                    type="button"
-                  >
-                    <button
-                      aria-label="profile_type.accessibility.button_previous"
-                      className="MuiButtonBase-root MuiButton-root MuiButton-text btnSecondary Mui-disabled Mui-disabled"
-                      disabled={true}
-                      onBlur={[Function]}
-                      onClick={[Function]}
-                      onDragLeave={[Function]}
-                      onFocus={[Function]}
-                      onKeyDown={[Function]}
-                      onKeyUp={[Function]}
-                      onMouseDown={[Function]}
-                      onMouseLeave={[Function]}
-                      onMouseUp={[Function]}
-                      onTouchEnd={[Function]}
-                      onTouchMove={[Function]}
-                      onTouchStart={[Function]}
-                      tabIndex={-1}
-                      type="button"
-                    >
-                      <span
-                        className="MuiButton-label"
-                      >
-                        profile_type.form.button_previous
-                      </span>
-                    </button>
-                  </ForwardRef(ButtonBase)>
-                </WithStyles(ForwardRef(ButtonBase))>
-              </ForwardRef(Button)>
-            </WithStyles(ForwardRef(Button))>
-            <WithStyles(ForwardRef(Button))
-              aria-label="profile_type.accessibility.button_next"
-              className="btnPrimary"
-              disabled={true}
-              onClick={[Function]}
-            >
-              <ForwardRef(Button)
-                aria-label="profile_type.accessibility.button_next"
-                className="btnPrimary"
-                classes={
-                  Object {
-                    "colorInherit": "MuiButton-colorInherit",
-                    "contained": "MuiButton-contained",
-                    "containedPrimary": "MuiButton-containedPrimary",
-                    "containedSecondary": "MuiButton-containedSecondary",
-                    "containedSizeLarge": "MuiButton-containedSizeLarge",
-                    "containedSizeSmall": "MuiButton-containedSizeSmall",
-                    "disableElevation": "MuiButton-disableElevation",
-                    "disabled": "Mui-disabled",
-                    "endIcon": "MuiButton-endIcon",
-                    "focusVisible": "Mui-focusVisible",
-                    "fullWidth": "MuiButton-fullWidth",
-                    "iconSizeLarge": "MuiButton-iconSizeLarge",
-                    "iconSizeMedium": "MuiButton-iconSizeMedium",
-                    "iconSizeSmall": "MuiButton-iconSizeSmall",
-                    "label": "MuiButton-label",
-                    "outlined": "MuiButton-outlined",
-                    "outlinedPrimary": "MuiButton-outlinedPrimary",
-                    "outlinedSecondary": "MuiButton-outlinedSecondary",
-                    "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                    "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                    "root": "MuiButton-root",
-                    "sizeLarge": "MuiButton-sizeLarge",
-                    "sizeSmall": "MuiButton-sizeSmall",
-                    "startIcon": "MuiButton-startIcon",
-                    "text": "MuiButton-text",
-                    "textPrimary": "MuiButton-textPrimary",
-                    "textSecondary": "MuiButton-textSecondary",
-                    "textSizeLarge": "MuiButton-textSizeLarge",
-                    "textSizeSmall": "MuiButton-textSizeSmall",
-                  }
-                }
-                disabled={true}
-                onClick={[Function]}
-              >
-                <WithStyles(ForwardRef(ButtonBase))
-                  aria-label="profile_type.accessibility.button_next"
-                  className="MuiButton-root MuiButton-text btnPrimary Mui-disabled"
-                  component="button"
-                  disabled={true}
-                  focusRipple={true}
-                  focusVisibleClassName="Mui-focusVisible"
-                  onClick={[Function]}
-                  type="button"
-                >
-                  <ForwardRef(ButtonBase)
-                    aria-label="profile_type.accessibility.button_next"
-                    className="MuiButton-root MuiButton-text btnPrimary Mui-disabled"
-                    classes={
-                      Object {
-                        "disabled": "Mui-disabled",
-                        "focusVisible": "Mui-focusVisible",
-                        "root": "MuiButtonBase-root",
-                      }
-                    }
-                    component="button"
-                    disabled={true}
-                    focusRipple={true}
-                    focusVisibleClassName="Mui-focusVisible"
-                    onClick={[Function]}
-                    type="button"
-                  >
-                    <button
-                      aria-label="profile_type.accessibility.button_next"
-                      className="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary Mui-disabled Mui-disabled"
-                      disabled={true}
-                      onBlur={[Function]}
-                      onClick={[Function]}
-                      onDragLeave={[Function]}
-                      onFocus={[Function]}
-                      onKeyDown={[Function]}
-                      onKeyUp={[Function]}
-                      onMouseDown={[Function]}
-                      onMouseLeave={[Function]}
-                      onMouseUp={[Function]}
-                      onTouchEnd={[Function]}
-                      onTouchMove={[Function]}
-                      onTouchStart={[Function]}
-                      tabIndex={-1}
-                      type="button"
-                    >
-                      <span
-                        className="MuiButton-label"
-                      >
-                        profile_type.form.button_next
-                      </span>
-                    </button>
-                  </ForwardRef(ButtonBase)>
-                </WithStyles(ForwardRef(ButtonBase))>
-              </ForwardRef(Button)>
-            </WithStyles(ForwardRef(Button))>
+            auth.enedissgegrandlyon.identityTitle
           </div>
-        </FormNavigation>
+          <label
+            class="text-16-normal"
+            for="firstName"
+          >
+            auth.enedissgegrandlyon.firstName
+            <input
+              class="inputText"
+              id="firstName"
+              name="firstName"
+              required=""
+              type="text"
+              value=""
+            />
+          </label>
+          <label
+            class="text-16-normal"
+            for="lastName"
+          >
+            auth.enedissgegrandlyon.lastName
+            <input
+              class="inputText"
+              id="lastName"
+              name="lastName"
+              required=""
+              type="text"
+              value=""
+            />
+          </label>
+          <div
+            class="title text-22-bold"
+          >
+            auth.enedissgegrandlyon.pdlTitle
+          </div>
+          <label
+            class="text-16-normal"
+            for="pdl"
+          >
+            auth.enedissgegrandlyon.pdlLabel
+            <input
+              class="inputText"
+              id="pdl"
+              inputmode="numeric"
+              min="0"
+              name="pdl"
+              required=""
+              type="number"
+              value=""
+            />
+          </label>
+          <button
+            class="MuiButtonBase-root MuiButton-root MuiButton-text btnText"
+            tabindex="0"
+            type="button"
+          >
+            <span
+              class="MuiButton-label"
+            >
+              auth.enedissgegrandlyon.pdlHint
+            </span>
+            <span
+              class="MuiTouchRipple-root"
+            />
+          </button>
+        </div>
+      </div>
+      <div
+        class="profile-navigation"
+      >
+        <button
+          aria-label="profile_type.accessibility.button_previous"
+          class="MuiButtonBase-root MuiButton-root MuiButton-text btnSecondary Mui-disabled Mui-disabled"
+          disabled=""
+          tabindex="-1"
+          type="button"
+        >
+          <span
+            class="MuiButton-label"
+          >
+            profile_type.form.button_previous
+          </span>
+        </button>
+        <button
+          aria-label="profile_type.accessibility.button_next"
+          class="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary Mui-disabled Mui-disabled"
+          disabled=""
+          tabindex="-1"
+          type="button"
+        >
+          <span
+            class="MuiButton-label"
+          >
+            profile_type.form.button_next
+          </span>
+        </button>
       </div>
-    </mock-content>
-  </SgeConnectView>
-</Provider>
+    </div>
+  </mock-content>
+</div>
 `;
diff --git a/src/components/Connection/SGEConnect/__snapshots__/SgeInit.spec.tsx.snap b/src/components/Connection/SGEConnect/__snapshots__/SgeInit.spec.tsx.snap
index e73b224e23e5d74d20666692bf802fa4ee399fb0..4658462c50026aba4d736556c29c9cc6a13f1c90 100644
--- a/src/components/Connection/SGEConnect/__snapshots__/SgeInit.spec.tsx.snap
+++ b/src/components/Connection/SGEConnect/__snapshots__/SgeInit.spec.tsx.snap
@@ -1,198 +1,49 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`SgeInit component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <SgeInit>
-    <div
-      className="connection-form"
+<div>
+  <div
+    class="connection-form"
+  >
+    <p
+      class="connection-form-title enedissgegrandlyon text-20-bold"
     >
-      <p
-        className="connection-form-title enedissgegrandlyon text-20-bold"
-      >
-        auth.enedissgegrandlyon.title
-      </p>
-      <StyledIcon
-        icon="test-file-stub"
-        size={180}
-      >
-        <Icon
-          aria-hidden={true}
-          icon="test-file-stub"
-          size={180}
-          spin={false}
-        >
-          <Component
-            aria-hidden={true}
-            className="styles__icon___23x3R"
-            height={180}
-            style={Object {}}
-            width={180}
-          >
-            <svg
-              aria-hidden={true}
-              className="styles__icon___23x3R"
-              height={180}
-              style={Object {}}
-              width={180}
-            >
-              <use
-                xlinkHref="#test-file-stub"
-              />
-            </svg>
-          </Component>
-        </Icon>
-      </StyledIcon>
-      <p
-        className="connection-form-subtitle enedissgegrandlyon text-16-regular"
-        dangerouslySetInnerHTML={
-          Object {
-            "__html": "auth.enedissgegrandlyon.bill",
-          }
-        }
+      auth.enedissgegrandlyon.title
+    </p>
+    <svg
+      aria-hidden="true"
+      class="styles__icon___23x3R"
+      height="180"
+      width="180"
+    >
+      <use
+        xlink:href="#test-file-stub"
       />
-      <div
-        className="connection-form-button"
+    </svg>
+    <p
+      class="connection-form-subtitle enedissgegrandlyon text-16-regular"
+    >
+      auth.enedissgegrandlyon.bill
+    </p>
+    <div
+      class="connection-form-button"
+    >
+      <button
+        aria-label="auth.enedissgegrandlyon.accessibility.connect"
+        class="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
+        tabindex="0"
+        type="button"
       >
-        <WithStyles(ForwardRef(Button))
-          aria-label="auth.enedissgegrandlyon.accessibility.connect"
-          className="btnPrimary"
-          onClick={[Function]}
+        <span
+          class="MuiButton-label"
         >
-          <ForwardRef(Button)
-            aria-label="auth.enedissgegrandlyon.accessibility.connect"
-            className="btnPrimary"
-            classes={
-              Object {
-                "colorInherit": "MuiButton-colorInherit",
-                "contained": "MuiButton-contained",
-                "containedPrimary": "MuiButton-containedPrimary",
-                "containedSecondary": "MuiButton-containedSecondary",
-                "containedSizeLarge": "MuiButton-containedSizeLarge",
-                "containedSizeSmall": "MuiButton-containedSizeSmall",
-                "disableElevation": "MuiButton-disableElevation",
-                "disabled": "Mui-disabled",
-                "endIcon": "MuiButton-endIcon",
-                "focusVisible": "Mui-focusVisible",
-                "fullWidth": "MuiButton-fullWidth",
-                "iconSizeLarge": "MuiButton-iconSizeLarge",
-                "iconSizeMedium": "MuiButton-iconSizeMedium",
-                "iconSizeSmall": "MuiButton-iconSizeSmall",
-                "label": "MuiButton-label",
-                "outlined": "MuiButton-outlined",
-                "outlinedPrimary": "MuiButton-outlinedPrimary",
-                "outlinedSecondary": "MuiButton-outlinedSecondary",
-                "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                "root": "MuiButton-root",
-                "sizeLarge": "MuiButton-sizeLarge",
-                "sizeSmall": "MuiButton-sizeSmall",
-                "startIcon": "MuiButton-startIcon",
-                "text": "MuiButton-text",
-                "textPrimary": "MuiButton-textPrimary",
-                "textSecondary": "MuiButton-textSecondary",
-                "textSizeLarge": "MuiButton-textSizeLarge",
-                "textSizeSmall": "MuiButton-textSizeSmall",
-              }
-            }
-            onClick={[Function]}
-          >
-            <WithStyles(ForwardRef(ButtonBase))
-              aria-label="auth.enedissgegrandlyon.accessibility.connect"
-              className="MuiButton-root MuiButton-text btnPrimary"
-              component="button"
-              disabled={false}
-              focusRipple={true}
-              focusVisibleClassName="Mui-focusVisible"
-              onClick={[Function]}
-              type="button"
-            >
-              <ForwardRef(ButtonBase)
-                aria-label="auth.enedissgegrandlyon.accessibility.connect"
-                className="MuiButton-root MuiButton-text btnPrimary"
-                classes={
-                  Object {
-                    "disabled": "Mui-disabled",
-                    "focusVisible": "Mui-focusVisible",
-                    "root": "MuiButtonBase-root",
-                  }
-                }
-                component="button"
-                disabled={false}
-                focusRipple={true}
-                focusVisibleClassName="Mui-focusVisible"
-                onClick={[Function]}
-                type="button"
-              >
-                <button
-                  aria-label="auth.enedissgegrandlyon.accessibility.connect"
-                  className="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                  disabled={false}
-                  onBlur={[Function]}
-                  onClick={[Function]}
-                  onDragLeave={[Function]}
-                  onFocus={[Function]}
-                  onKeyDown={[Function]}
-                  onKeyUp={[Function]}
-                  onMouseDown={[Function]}
-                  onMouseLeave={[Function]}
-                  onMouseUp={[Function]}
-                  onTouchEnd={[Function]}
-                  onTouchMove={[Function]}
-                  onTouchStart={[Function]}
-                  tabIndex={0}
-                  type="button"
-                >
-                  <span
-                    className="MuiButton-label"
-                  >
-                    auth.enedissgegrandlyon.connect
-                  </span>
-                  <WithStyles(memo)
-                    center={false}
-                  >
-                    <ForwardRef(TouchRipple)
-                      center={false}
-                      classes={
-                        Object {
-                          "child": "MuiTouchRipple-child",
-                          "childLeaving": "MuiTouchRipple-childLeaving",
-                          "childPulsate": "MuiTouchRipple-childPulsate",
-                          "ripple": "MuiTouchRipple-ripple",
-                          "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                          "rippleVisible": "MuiTouchRipple-rippleVisible",
-                          "root": "MuiTouchRipple-root",
-                        }
-                      }
-                    >
-                      <span
-                        className="MuiTouchRipple-root"
-                      >
-                        <TransitionGroup
-                          childFactory={[Function]}
-                          component={null}
-                          exit={true}
-                        />
-                      </span>
-                    </ForwardRef(TouchRipple)>
-                  </WithStyles(memo)>
-                </button>
-              </ForwardRef(ButtonBase)>
-            </WithStyles(ForwardRef(ButtonBase))>
-          </ForwardRef(Button)>
-        </WithStyles(ForwardRef(Button))>
-      </div>
+          auth.enedissgegrandlyon.connect
+        </span>
+        <span
+          class="MuiTouchRipple-root"
+        />
+      </button>
     </div>
-  </SgeInit>
-</Provider>
+  </div>
+</div>
 `;
diff --git a/src/components/Connection/SGEConnect/__snapshots__/SgeModalHint.spec.tsx.snap b/src/components/Connection/SGEConnect/__snapshots__/SgeModalHint.spec.tsx.snap
index 9392819652df47f5142e7feb2ba1b3af20c9c7ff..78b078c6f75ee3ef999c2c06b7d2fee8b572816b 100644
--- a/src/components/Connection/SGEConnect/__snapshots__/SgeModalHint.spec.tsx.snap
+++ b/src/components/Connection/SGEConnect/__snapshots__/SgeModalHint.spec.tsx.snap
@@ -1,1076 +1,135 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`SgeModalHint component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
+<body
+  style="padding-right: 0px; overflow: hidden;"
 >
-  <SgeModalHint
-    handleCloseClick={[MockFunction]}
-    open={true}
+  <div
+    aria-hidden="true"
+  />
+  <div
+    class="MuiDialog-root modal-root"
+    role="presentation"
+    style="position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;"
   >
-    <WithStyles(ForwardRef(Dialog))
-      aria-labelledby="accessibility-title"
-      classes={
-        Object {
-          "paper": "modal-paper",
-          "root": "modal-root",
-        }
-      }
-      disableEscapeKeyDown={true}
-      onClose={[MockFunction]}
-      open={true}
+    <div
+      aria-hidden="true"
+      class="MuiBackdrop-root"
+      style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
+    />
+    <div
+      data-test="sentinelStart"
+      tabindex="0"
+    />
+    <div
+      class="MuiDialog-container MuiDialog-scrollPaper"
+      role="none presentation"
+      style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
+      tabindex="-1"
     >
-      <ForwardRef(Dialog)
+      <div
         aria-labelledby="accessibility-title"
-        classes={
-          Object {
-            "container": "MuiDialog-container",
-            "paper": "MuiDialog-paper modal-paper",
-            "paperFullScreen": "MuiDialog-paperFullScreen",
-            "paperFullWidth": "MuiDialog-paperFullWidth",
-            "paperScrollBody": "MuiDialog-paperScrollBody",
-            "paperScrollPaper": "MuiDialog-paperScrollPaper",
-            "paperWidthFalse": "MuiDialog-paperWidthFalse",
-            "paperWidthLg": "MuiDialog-paperWidthLg",
-            "paperWidthMd": "MuiDialog-paperWidthMd",
-            "paperWidthSm": "MuiDialog-paperWidthSm",
-            "paperWidthXl": "MuiDialog-paperWidthXl",
-            "paperWidthXs": "MuiDialog-paperWidthXs",
-            "root": "MuiDialog-root modal-root",
-            "scrollBody": "MuiDialog-scrollBody",
-            "scrollPaper": "MuiDialog-scrollPaper",
-          }
-        }
-        disableEscapeKeyDown={true}
-        onClose={[MockFunction]}
-        open={true}
+        class="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
+        role="dialog"
       >
-        <ForwardRef(Modal)
-          BackdropComponent={
-            Object {
-              "$$typeof": Symbol(react.forward_ref),
-              "Naked": Object {
-                "$$typeof": Symbol(react.forward_ref),
-                "propTypes": Object {
-                  "children": [Function],
-                  "className": [Function],
-                  "classes": [Function],
-                  "invisible": [Function],
-                  "open": [Function],
-                  "transitionDuration": [Function],
-                },
-                "render": [Function],
-              },
-              "displayName": "WithStyles(ForwardRef(Backdrop))",
-              "options": Object {
-                "defaultTheme": Object {
-                  "breakpoints": Object {
-                    "between": [Function],
-                    "down": [Function],
-                    "keys": Array [
-                      "xs",
-                      "sm",
-                      "md",
-                      "lg",
-                      "xl",
-                    ],
-                    "only": [Function],
-                    "up": [Function],
-                    "values": Object {
-                      "lg": 1280,
-                      "md": 960,
-                      "sm": 600,
-                      "xl": 1920,
-                      "xs": 0,
-                    },
-                    "width": [Function],
-                  },
-                  "direction": "ltr",
-                  "mixins": Object {
-                    "gutters": [Function],
-                    "toolbar": Object {
-                      "@media (min-width:0px) and (orientation: landscape)": Object {
-                        "minHeight": 48,
-                      },
-                      "@media (min-width:600px)": Object {
-                        "minHeight": 64,
-                      },
-                      "minHeight": 56,
-                    },
-                  },
-                  "overrides": Object {},
-                  "palette": Object {
-                    "action": Object {
-                      "activatedOpacity": 0.12,
-                      "active": "rgba(0, 0, 0, 0.54)",
-                      "disabled": "rgba(0, 0, 0, 0.26)",
-                      "disabledBackground": "rgba(0, 0, 0, 0.12)",
-                      "disabledOpacity": 0.38,
-                      "focus": "rgba(0, 0, 0, 0.12)",
-                      "focusOpacity": 0.12,
-                      "hover": "rgba(0, 0, 0, 0.04)",
-                      "hoverOpacity": 0.04,
-                      "selected": "rgba(0, 0, 0, 0.08)",
-                      "selectedOpacity": 0.08,
-                    },
-                    "augmentColor": [Function],
-                    "background": Object {
-                      "default": "#fafafa",
-                      "paper": "#fff",
-                    },
-                    "common": Object {
-                      "black": "#000",
-                      "white": "#fff",
-                    },
-                    "contrastThreshold": 3,
-                    "divider": "rgba(0, 0, 0, 0.12)",
-                    "error": Object {
-                      "contrastText": "#fff",
-                      "dark": "#d32f2f",
-                      "light": "#e57373",
-                      "main": "#f44336",
-                    },
-                    "getContrastText": [Function],
-                    "grey": Object {
-                      "100": "#f5f5f5",
-                      "200": "#eeeeee",
-                      "300": "#e0e0e0",
-                      "400": "#bdbdbd",
-                      "50": "#fafafa",
-                      "500": "#9e9e9e",
-                      "600": "#757575",
-                      "700": "#616161",
-                      "800": "#424242",
-                      "900": "#212121",
-                      "A100": "#d5d5d5",
-                      "A200": "#aaaaaa",
-                      "A400": "#303030",
-                      "A700": "#616161",
-                    },
-                    "info": Object {
-                      "contrastText": "#fff",
-                      "dark": "#1976d2",
-                      "light": "#64b5f6",
-                      "main": "#2196f3",
-                    },
-                    "primary": Object {
-                      "contrastText": "#fff",
-                      "dark": "#303f9f",
-                      "light": "#7986cb",
-                      "main": "#3f51b5",
-                    },
-                    "secondary": Object {
-                      "contrastText": "#fff",
-                      "dark": "#c51162",
-                      "light": "#ff4081",
-                      "main": "#f50057",
-                    },
-                    "success": Object {
-                      "contrastText": "rgba(0, 0, 0, 0.87)",
-                      "dark": "#388e3c",
-                      "light": "#81c784",
-                      "main": "#4caf50",
-                    },
-                    "text": Object {
-                      "disabled": "rgba(0, 0, 0, 0.38)",
-                      "hint": "rgba(0, 0, 0, 0.38)",
-                      "primary": "rgba(0, 0, 0, 0.87)",
-                      "secondary": "rgba(0, 0, 0, 0.54)",
-                    },
-                    "tonalOffset": 0.2,
-                    "type": "light",
-                    "warning": Object {
-                      "contrastText": "rgba(0, 0, 0, 0.87)",
-                      "dark": "#f57c00",
-                      "light": "#ffb74d",
-                      "main": "#ff9800",
-                    },
-                  },
-                  "props": Object {},
-                  "shadows": Array [
-                    "none",
-                    "0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12)",
-                    "0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)",
-                    "0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)",
-                    "0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)",
-                    "0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)",
-                    "0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)",
-                    "0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)",
-                    "0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)",
-                    "0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)",
-                    "0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)",
-                    "0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)",
-                    "0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)",
-                    "0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)",
-                    "0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)",
-                    "0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)",
-                    "0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)",
-                    "0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)",
-                    "0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)",
-                    "0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)",
-                    "0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)",
-                    "0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)",
-                  ],
-                  "shape": Object {
-                    "borderRadius": 4,
-                  },
-                  "spacing": [Function],
-                  "transitions": Object {
-                    "create": [Function],
-                    "duration": Object {
-                      "complex": 375,
-                      "enteringScreen": 225,
-                      "leavingScreen": 195,
-                      "short": 250,
-                      "shorter": 200,
-                      "shortest": 150,
-                      "standard": 300,
-                    },
-                    "easing": Object {
-                      "easeIn": "cubic-bezier(0.4, 0, 1, 1)",
-                      "easeInOut": "cubic-bezier(0.4, 0, 0.2, 1)",
-                      "easeOut": "cubic-bezier(0.0, 0, 0.2, 1)",
-                      "sharp": "cubic-bezier(0.4, 0, 0.6, 1)",
-                    },
-                    "getAutoHeightDuration": [Function],
-                  },
-                  "typography": Object {
-                    "body1": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.00938em",
-                      "lineHeight": 1.5,
-                    },
-                    "body2": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.875rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.01071em",
-                      "lineHeight": 1.43,
-                    },
-                    "button": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.875rem",
-                      "fontWeight": 500,
-                      "letterSpacing": "0.02857em",
-                      "lineHeight": 1.75,
-                      "textTransform": "uppercase",
-                    },
-                    "caption": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.75rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.03333em",
-                      "lineHeight": 1.66,
-                    },
-                    "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                    "fontSize": 14,
-                    "fontWeightBold": 700,
-                    "fontWeightLight": 300,
-                    "fontWeightMedium": 500,
-                    "fontWeightRegular": 400,
-                    "h1": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "6rem",
-                      "fontWeight": 300,
-                      "letterSpacing": "-0.01562em",
-                      "lineHeight": 1.167,
-                    },
-                    "h2": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "3.75rem",
-                      "fontWeight": 300,
-                      "letterSpacing": "-0.00833em",
-                      "lineHeight": 1.2,
-                    },
-                    "h3": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "3rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0em",
-                      "lineHeight": 1.167,
-                    },
-                    "h4": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "2.125rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.00735em",
-                      "lineHeight": 1.235,
-                    },
-                    "h5": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1.5rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0em",
-                      "lineHeight": 1.334,
-                    },
-                    "h6": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1.25rem",
-                      "fontWeight": 500,
-                      "letterSpacing": "0.0075em",
-                      "lineHeight": 1.6,
-                    },
-                    "htmlFontSize": 16,
-                    "overline": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.75rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.08333em",
-                      "lineHeight": 2.66,
-                      "textTransform": "uppercase",
-                    },
-                    "pxToRem": [Function],
-                    "round": [Function],
-                    "subtitle1": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "1rem",
-                      "fontWeight": 400,
-                      "letterSpacing": "0.00938em",
-                      "lineHeight": 1.75,
-                    },
-                    "subtitle2": Object {
-                      "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                      "fontSize": "0.875rem",
-                      "fontWeight": 500,
-                      "letterSpacing": "0.00714em",
-                      "lineHeight": 1.57,
-                    },
-                  },
-                  "zIndex": Object {
-                    "appBar": 1100,
-                    "drawer": 1200,
-                    "mobileStepper": 1000,
-                    "modal": 1300,
-                    "snackbar": 1400,
-                    "speedDial": 1050,
-                    "tooltip": 1500,
-                  },
-                },
-                "name": "MuiBackdrop",
-              },
-              "propTypes": Object {
-                "classes": [Function],
-                "innerRef": [Function],
-              },
-              "render": [Function],
-              "useStyles": [Function],
-            }
-          }
-          BackdropProps={
-            Object {
-              "transitionDuration": Object {
-                "enter": 225,
-                "exit": 195,
-              },
-            }
-          }
-          className="MuiDialog-root modal-root"
-          closeAfterTransition={true}
-          disableEscapeKeyDown={true}
-          onClose={[MockFunction]}
-          open={true}
+        <div
+          id="accessibility-title"
         >
-          <ForwardRef(Portal)
-            disablePortal={false}
+          challenge_no_fluid_modal.accessibility.window_title
+        </div>
+        <button
+          aria-label="feedback.accessibility.button_close"
+          class="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
+          tabindex="0"
+          type="button"
+        >
+          <span
+            class="MuiIconButton-label"
+          >
+            <svg
+              class="styles__icon___23x3R"
+              height="16"
+              width="16"
+            >
+              <use
+                xlink:href="#test-file-stub"
+              />
+            </svg>
+          </span>
+          <span
+            class="MuiTouchRipple-root"
+          />
+        </button>
+        <div
+          class="sgeHintModal"
+        >
+          <div
+            class="title text-20-bold"
           >
-            <Portal
-              containerInfo={
-                <body
-                  style="padding-right: 0px; overflow: hidden;"
-                >
-                  <div
-                    class="MuiDialog-root modal-root"
-                    role="presentation"
-                    style="position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;"
-                  >
-                    <div
-                      aria-hidden="true"
-                      class="MuiBackdrop-root"
-                      style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
-                    />
-                    <div
-                      data-test="sentinelStart"
-                      tabindex="0"
-                    />
-                    <div
-                      class="MuiDialog-container MuiDialog-scrollPaper"
-                      role="none presentation"
-                      style="opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"
-                      tabindex="-1"
-                    >
-                      <div
-                        aria-labelledby="accessibility-title"
-                        class="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
-                        role="dialog"
-                      >
-                        <div
-                          id="accessibility-title"
-                        >
-                          challenge_no_fluid_modal.accessibility.window_title
-                        </div>
-                        <button
-                          aria-label="feedback.accessibility.button_close"
-                          class="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
-                          tabindex="0"
-                          type="button"
-                        >
-                          <span
-                            class="MuiIconButton-label"
-                          >
-                            <svg
-                              class="styles__icon___23x3R"
-                              height="16"
-                              width="16"
-                            >
-                              <use
-                                xlink:href="#test-file-stub"
-                              />
-                            </svg>
-                          </span>
-                          <span
-                            class="MuiTouchRipple-root"
-                          />
-                        </button>
-                        <div
-                          class="sgeHintModal"
-                        >
-                          <div
-                            class="title text-20-bold"
-                          >
-                            auth.enedissgegrandlyon.modalHint.title
-                          </div>
-                          <div
-                            class="pdl"
-                          >
-                            <p>
-                              auth.enedissgegrandlyon.pdlModal.txt1
-                            </p>
-                            <p>
-                              auth.enedissgegrandlyon.pdlModal.txt2
-                            </p>
-                            <div
-                              class="bill"
-                            >
-                              <svg
-                                alt="Facture"
-                                class="bill styles__icon___23x3R"
-                                height="16"
-                                width="16"
-                              >
-                                <use
-                                  xlink:href="#test-file-stub"
-                                />
-                              </svg>
-                              <p>
-                                auth.enedissgegrandlyon.pdlModal.txt3
-                              </p>
-                            </div>
-                            <p>
-                              auth.enedissgegrandlyon.pdlModal.txt4
-                            </p>
-                            <svg
-                              alt="PDL"
-                              class="prm styles__icon___23x3R"
-                              height="16"
-                              width="16"
-                            >
-                              <use
-                                xlink:href="#test-file-stub"
-                              />
-                            </svg>
-                          </div>
-                          <button
-                            aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
-                            class="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                            tabindex="0"
-                            type="button"
-                          >
-                            <span
-                              class="MuiButton-label"
-                            >
-                              auth.enedissgegrandlyon.modalHint.button
-                            </span>
-                            <span
-                              class="MuiTouchRipple-root"
-                            />
-                          </button>
-                        </div>
-                      </div>
-                    </div>
-                    <div
-                      data-test="sentinelEnd"
-                      tabindex="0"
-                    />
-                  </div>
-                </body>
-              }
+            auth.enedissgegrandlyon.modalHint.title
+          </div>
+          <div
+            class="pdl"
+          >
+            <p>
+              auth.enedissgegrandlyon.pdlModal.txt1
+            </p>
+            <p>
+              auth.enedissgegrandlyon.pdlModal.txt2
+            </p>
+            <div
+              class="bill"
             >
-              <div
-                className="MuiDialog-root modal-root"
-                onKeyDown={[Function]}
-                role="presentation"
-                style={
-                  Object {
-                    "bottom": 0,
-                    "left": 0,
-                    "position": "fixed",
-                    "right": 0,
-                    "top": 0,
-                    "zIndex": 1300,
-                  }
-                }
+              <svg
+                alt="Facture"
+                class="bill styles__icon___23x3R"
+                height="16"
+                width="16"
               >
-                <WithStyles(ForwardRef(Backdrop))
-                  onClick={[Function]}
-                  open={true}
-                  transitionDuration={
-                    Object {
-                      "enter": 225,
-                      "exit": 195,
-                    }
-                  }
-                >
-                  <ForwardRef(Backdrop)
-                    classes={
-                      Object {
-                        "invisible": "MuiBackdrop-invisible",
-                        "root": "MuiBackdrop-root",
-                      }
-                    }
-                    onClick={[Function]}
-                    open={true}
-                    transitionDuration={
-                      Object {
-                        "enter": 225,
-                        "exit": 195,
-                      }
-                    }
-                  >
-                    <ForwardRef(Fade)
-                      in={true}
-                      onClick={[Function]}
-                      timeout={
-                        Object {
-                          "enter": 225,
-                          "exit": 195,
-                        }
-                      }
-                    >
-                      <Transition
-                        appear={true}
-                        enter={true}
-                        exit={true}
-                        in={true}
-                        mountOnEnter={false}
-                        onClick={[Function]}
-                        onEnter={[Function]}
-                        onEntered={[Function]}
-                        onEntering={[Function]}
-                        onExit={[Function]}
-                        onExited={[Function]}
-                        onExiting={[Function]}
-                        timeout={
-                          Object {
-                            "enter": 225,
-                            "exit": 195,
-                          }
-                        }
-                        unmountOnExit={false}
-                      >
-                        <div
-                          aria-hidden={true}
-                          className="MuiBackdrop-root"
-                          onClick={[Function]}
-                          style={
-                            Object {
-                              "opacity": 1,
-                              "visibility": undefined,
-                            }
-                          }
-                        />
-                      </Transition>
-                    </ForwardRef(Fade)>
-                  </ForwardRef(Backdrop)>
-                </WithStyles(ForwardRef(Backdrop))>
-                <Unstable_TrapFocus
-                  disableAutoFocus={false}
-                  disableEnforceFocus={false}
-                  disableRestoreFocus={false}
-                  getDoc={[Function]}
-                  isEnabled={[Function]}
-                  open={true}
-                >
-                  <div
-                    data-test="sentinelStart"
-                    tabIndex={0}
-                  />
-                  <ForwardRef(Fade)
-                    appear={true}
-                    in={true}
-                    onEnter={[Function]}
-                    onExited={[Function]}
-                    role="none presentation"
-                    tabIndex="-1"
-                    timeout={
-                      Object {
-                        "enter": 225,
-                        "exit": 195,
-                      }
-                    }
-                  >
-                    <Transition
-                      appear={true}
-                      enter={true}
-                      exit={true}
-                      in={true}
-                      mountOnEnter={false}
-                      onEnter={[Function]}
-                      onEntered={[Function]}
-                      onEntering={[Function]}
-                      onExit={[Function]}
-                      onExited={[Function]}
-                      onExiting={[Function]}
-                      role="none presentation"
-                      tabIndex="-1"
-                      timeout={
-                        Object {
-                          "enter": 225,
-                          "exit": 195,
-                        }
-                      }
-                      unmountOnExit={false}
-                    >
-                      <div
-                        className="MuiDialog-container MuiDialog-scrollPaper"
-                        onMouseDown={[Function]}
-                        onMouseUp={[Function]}
-                        role="none presentation"
-                        style={
-                          Object {
-                            "opacity": 1,
-                            "visibility": undefined,
-                          }
-                        }
-                        tabIndex="-1"
-                      >
-                        <WithStyles(ForwardRef(Paper))
-                          aria-labelledby="accessibility-title"
-                          className="MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm"
-                          elevation={24}
-                          role="dialog"
-                        >
-                          <ForwardRef(Paper)
-                            aria-labelledby="accessibility-title"
-                            className="MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm"
-                            classes={
-                              Object {
-                                "elevation0": "MuiPaper-elevation0",
-                                "elevation1": "MuiPaper-elevation1",
-                                "elevation10": "MuiPaper-elevation10",
-                                "elevation11": "MuiPaper-elevation11",
-                                "elevation12": "MuiPaper-elevation12",
-                                "elevation13": "MuiPaper-elevation13",
-                                "elevation14": "MuiPaper-elevation14",
-                                "elevation15": "MuiPaper-elevation15",
-                                "elevation16": "MuiPaper-elevation16",
-                                "elevation17": "MuiPaper-elevation17",
-                                "elevation18": "MuiPaper-elevation18",
-                                "elevation19": "MuiPaper-elevation19",
-                                "elevation2": "MuiPaper-elevation2",
-                                "elevation20": "MuiPaper-elevation20",
-                                "elevation21": "MuiPaper-elevation21",
-                                "elevation22": "MuiPaper-elevation22",
-                                "elevation23": "MuiPaper-elevation23",
-                                "elevation24": "MuiPaper-elevation24",
-                                "elevation3": "MuiPaper-elevation3",
-                                "elevation4": "MuiPaper-elevation4",
-                                "elevation5": "MuiPaper-elevation5",
-                                "elevation6": "MuiPaper-elevation6",
-                                "elevation7": "MuiPaper-elevation7",
-                                "elevation8": "MuiPaper-elevation8",
-                                "elevation9": "MuiPaper-elevation9",
-                                "outlined": "MuiPaper-outlined",
-                                "root": "MuiPaper-root",
-                                "rounded": "MuiPaper-rounded",
-                              }
-                            }
-                            elevation={24}
-                            role="dialog"
-                          >
-                            <div
-                              aria-labelledby="accessibility-title"
-                              className="MuiPaper-root MuiDialog-paper modal-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthSm MuiPaper-elevation24 MuiPaper-rounded"
-                              role="dialog"
-                            >
-                              <div
-                                id="accessibility-title"
-                              >
-                                challenge_no_fluid_modal.accessibility.window_title
-                              </div>
-                              <WithStyles(ForwardRef(IconButton))
-                                aria-label="feedback.accessibility.button_close"
-                                className="modal-paper-close-button"
-                                onClick={[MockFunction]}
-                              >
-                                <ForwardRef(IconButton)
-                                  aria-label="feedback.accessibility.button_close"
-                                  className="modal-paper-close-button"
-                                  classes={
-                                    Object {
-                                      "colorInherit": "MuiIconButton-colorInherit",
-                                      "colorPrimary": "MuiIconButton-colorPrimary",
-                                      "colorSecondary": "MuiIconButton-colorSecondary",
-                                      "disabled": "Mui-disabled",
-                                      "edgeEnd": "MuiIconButton-edgeEnd",
-                                      "edgeStart": "MuiIconButton-edgeStart",
-                                      "label": "MuiIconButton-label",
-                                      "root": "MuiIconButton-root",
-                                      "sizeSmall": "MuiIconButton-sizeSmall",
-                                    }
-                                  }
-                                  onClick={[MockFunction]}
-                                >
-                                  <WithStyles(ForwardRef(ButtonBase))
-                                    aria-label="feedback.accessibility.button_close"
-                                    centerRipple={true}
-                                    className="MuiIconButton-root modal-paper-close-button"
-                                    disabled={false}
-                                    focusRipple={true}
-                                    onClick={[MockFunction]}
-                                  >
-                                    <ForwardRef(ButtonBase)
-                                      aria-label="feedback.accessibility.button_close"
-                                      centerRipple={true}
-                                      className="MuiIconButton-root modal-paper-close-button"
-                                      classes={
-                                        Object {
-                                          "disabled": "Mui-disabled",
-                                          "focusVisible": "Mui-focusVisible",
-                                          "root": "MuiButtonBase-root",
-                                        }
-                                      }
-                                      disabled={false}
-                                      focusRipple={true}
-                                      onClick={[MockFunction]}
-                                    >
-                                      <button
-                                        aria-label="feedback.accessibility.button_close"
-                                        className="MuiButtonBase-root MuiIconButton-root modal-paper-close-button"
-                                        disabled={false}
-                                        onBlur={[Function]}
-                                        onClick={[MockFunction]}
-                                        onDragLeave={[Function]}
-                                        onFocus={[Function]}
-                                        onKeyDown={[Function]}
-                                        onKeyUp={[Function]}
-                                        onMouseDown={[Function]}
-                                        onMouseLeave={[Function]}
-                                        onMouseUp={[Function]}
-                                        onTouchEnd={[Function]}
-                                        onTouchMove={[Function]}
-                                        onTouchStart={[Function]}
-                                        tabIndex={0}
-                                        type="button"
-                                      >
-                                        <span
-                                          className="MuiIconButton-label"
-                                        >
-                                          <Icon
-                                            icon="test-file-stub"
-                                            size={16}
-                                            spin={false}
-                                          >
-                                            <Component
-                                              className="styles__icon___23x3R"
-                                              height={16}
-                                              style={Object {}}
-                                              width={16}
-                                            >
-                                              <svg
-                                                className="styles__icon___23x3R"
-                                                height={16}
-                                                style={Object {}}
-                                                width={16}
-                                              >
-                                                <use
-                                                  xlinkHref="#test-file-stub"
-                                                />
-                                              </svg>
-                                            </Component>
-                                          </Icon>
-                                        </span>
-                                        <WithStyles(memo)
-                                          center={true}
-                                        >
-                                          <ForwardRef(TouchRipple)
-                                            center={true}
-                                            classes={
-                                              Object {
-                                                "child": "MuiTouchRipple-child",
-                                                "childLeaving": "MuiTouchRipple-childLeaving",
-                                                "childPulsate": "MuiTouchRipple-childPulsate",
-                                                "ripple": "MuiTouchRipple-ripple",
-                                                "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                "root": "MuiTouchRipple-root",
-                                              }
-                                            }
-                                          >
-                                            <span
-                                              className="MuiTouchRipple-root"
-                                            >
-                                              <TransitionGroup
-                                                childFactory={[Function]}
-                                                component={null}
-                                                exit={true}
-                                              />
-                                            </span>
-                                          </ForwardRef(TouchRipple)>
-                                        </WithStyles(memo)>
-                                      </button>
-                                    </ForwardRef(ButtonBase)>
-                                  </WithStyles(ForwardRef(ButtonBase))>
-                                </ForwardRef(IconButton)>
-                              </WithStyles(ForwardRef(IconButton))>
-                              <div
-                                className="sgeHintModal"
-                              >
-                                <div
-                                  className="title text-20-bold"
-                                >
-                                  auth.enedissgegrandlyon.modalHint.title
-                                </div>
-                                <div
-                                  className="pdl"
-                                >
-                                  <p>
-                                    auth.enedissgegrandlyon.pdlModal.txt1
-                                  </p>
-                                  <p>
-                                    auth.enedissgegrandlyon.pdlModal.txt2
-                                  </p>
-                                  <div
-                                    className="bill"
-                                  >
-                                    <Icon
-                                      alt="Facture"
-                                      className="bill"
-                                      icon="test-file-stub"
-                                      spin={false}
-                                    >
-                                      <Component
-                                        alt="Facture"
-                                        className="bill styles__icon___23x3R"
-                                        height="16"
-                                        style={Object {}}
-                                        width="16"
-                                      >
-                                        <svg
-                                          alt="Facture"
-                                          className="bill styles__icon___23x3R"
-                                          height="16"
-                                          style={Object {}}
-                                          width="16"
-                                        >
-                                          <use
-                                            xlinkHref="#test-file-stub"
-                                          />
-                                        </svg>
-                                      </Component>
-                                    </Icon>
-                                    <p>
-                                      auth.enedissgegrandlyon.pdlModal.txt3
-                                    </p>
-                                  </div>
-                                  <p>
-                                    auth.enedissgegrandlyon.pdlModal.txt4
-                                  </p>
-                                  <Icon
-                                    alt="PDL"
-                                    className="prm"
-                                    icon="test-file-stub"
-                                    spin={false}
-                                  >
-                                    <Component
-                                      alt="PDL"
-                                      className="prm styles__icon___23x3R"
-                                      height="16"
-                                      style={Object {}}
-                                      width="16"
-                                    >
-                                      <svg
-                                        alt="PDL"
-                                        className="prm styles__icon___23x3R"
-                                        height="16"
-                                        style={Object {}}
-                                        width="16"
-                                      >
-                                        <use
-                                          xlinkHref="#test-file-stub"
-                                        />
-                                      </svg>
-                                    </Component>
-                                  </Icon>
-                                </div>
-                                <WithStyles(ForwardRef(Button))
-                                  aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
-                                  className="btnPrimary"
-                                  onClick={[MockFunction]}
-                                >
-                                  <ForwardRef(Button)
-                                    aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
-                                    className="btnPrimary"
-                                    classes={
-                                      Object {
-                                        "colorInherit": "MuiButton-colorInherit",
-                                        "contained": "MuiButton-contained",
-                                        "containedPrimary": "MuiButton-containedPrimary",
-                                        "containedSecondary": "MuiButton-containedSecondary",
-                                        "containedSizeLarge": "MuiButton-containedSizeLarge",
-                                        "containedSizeSmall": "MuiButton-containedSizeSmall",
-                                        "disableElevation": "MuiButton-disableElevation",
-                                        "disabled": "Mui-disabled",
-                                        "endIcon": "MuiButton-endIcon",
-                                        "focusVisible": "Mui-focusVisible",
-                                        "fullWidth": "MuiButton-fullWidth",
-                                        "iconSizeLarge": "MuiButton-iconSizeLarge",
-                                        "iconSizeMedium": "MuiButton-iconSizeMedium",
-                                        "iconSizeSmall": "MuiButton-iconSizeSmall",
-                                        "label": "MuiButton-label",
-                                        "outlined": "MuiButton-outlined",
-                                        "outlinedPrimary": "MuiButton-outlinedPrimary",
-                                        "outlinedSecondary": "MuiButton-outlinedSecondary",
-                                        "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
-                                        "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
-                                        "root": "MuiButton-root",
-                                        "sizeLarge": "MuiButton-sizeLarge",
-                                        "sizeSmall": "MuiButton-sizeSmall",
-                                        "startIcon": "MuiButton-startIcon",
-                                        "text": "MuiButton-text",
-                                        "textPrimary": "MuiButton-textPrimary",
-                                        "textSecondary": "MuiButton-textSecondary",
-                                        "textSizeLarge": "MuiButton-textSizeLarge",
-                                        "textSizeSmall": "MuiButton-textSizeSmall",
-                                      }
-                                    }
-                                    onClick={[MockFunction]}
-                                  >
-                                    <WithStyles(ForwardRef(ButtonBase))
-                                      aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
-                                      className="MuiButton-root MuiButton-text btnPrimary"
-                                      component="button"
-                                      disabled={false}
-                                      focusRipple={true}
-                                      focusVisibleClassName="Mui-focusVisible"
-                                      onClick={[MockFunction]}
-                                      type="button"
-                                    >
-                                      <ForwardRef(ButtonBase)
-                                        aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
-                                        className="MuiButton-root MuiButton-text btnPrimary"
-                                        classes={
-                                          Object {
-                                            "disabled": "Mui-disabled",
-                                            "focusVisible": "Mui-focusVisible",
-                                            "root": "MuiButtonBase-root",
-                                          }
-                                        }
-                                        component="button"
-                                        disabled={false}
-                                        focusRipple={true}
-                                        focusVisibleClassName="Mui-focusVisible"
-                                        onClick={[MockFunction]}
-                                        type="button"
-                                      >
-                                        <button
-                                          aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
-                                          className="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
-                                          disabled={false}
-                                          onBlur={[Function]}
-                                          onClick={[MockFunction]}
-                                          onDragLeave={[Function]}
-                                          onFocus={[Function]}
-                                          onKeyDown={[Function]}
-                                          onKeyUp={[Function]}
-                                          onMouseDown={[Function]}
-                                          onMouseLeave={[Function]}
-                                          onMouseUp={[Function]}
-                                          onTouchEnd={[Function]}
-                                          onTouchMove={[Function]}
-                                          onTouchStart={[Function]}
-                                          tabIndex={0}
-                                          type="button"
-                                        >
-                                          <span
-                                            className="MuiButton-label"
-                                          >
-                                            auth.enedissgegrandlyon.modalHint.button
-                                          </span>
-                                          <WithStyles(memo)
-                                            center={false}
-                                          >
-                                            <ForwardRef(TouchRipple)
-                                              center={false}
-                                              classes={
-                                                Object {
-                                                  "child": "MuiTouchRipple-child",
-                                                  "childLeaving": "MuiTouchRipple-childLeaving",
-                                                  "childPulsate": "MuiTouchRipple-childPulsate",
-                                                  "ripple": "MuiTouchRipple-ripple",
-                                                  "ripplePulsate": "MuiTouchRipple-ripplePulsate",
-                                                  "rippleVisible": "MuiTouchRipple-rippleVisible",
-                                                  "root": "MuiTouchRipple-root",
-                                                }
-                                              }
-                                            >
-                                              <span
-                                                className="MuiTouchRipple-root"
-                                              >
-                                                <TransitionGroup
-                                                  childFactory={[Function]}
-                                                  component={null}
-                                                  exit={true}
-                                                />
-                                              </span>
-                                            </ForwardRef(TouchRipple)>
-                                          </WithStyles(memo)>
-                                        </button>
-                                      </ForwardRef(ButtonBase)>
-                                    </WithStyles(ForwardRef(ButtonBase))>
-                                  </ForwardRef(Button)>
-                                </WithStyles(ForwardRef(Button))>
-                              </div>
-                            </div>
-                          </ForwardRef(Paper)>
-                        </WithStyles(ForwardRef(Paper))>
-                      </div>
-                    </Transition>
-                  </ForwardRef(Fade)>
-                  <div
-                    data-test="sentinelEnd"
-                    tabIndex={0}
-                  />
-                </Unstable_TrapFocus>
-              </div>
-            </Portal>
-          </ForwardRef(Portal)>
-        </ForwardRef(Modal)>
-      </ForwardRef(Dialog)>
-    </WithStyles(ForwardRef(Dialog))>
-  </SgeModalHint>
-</Provider>
+                <use
+                  xlink:href="#test-file-stub"
+                />
+              </svg>
+              <p>
+                auth.enedissgegrandlyon.pdlModal.txt3
+              </p>
+            </div>
+            <p>
+              auth.enedissgegrandlyon.pdlModal.txt4
+            </p>
+            <svg
+              alt="PDL"
+              class="prm styles__icon___23x3R"
+              height="16"
+              width="16"
+            >
+              <use
+                xlink:href="#test-file-stub"
+              />
+            </svg>
+          </div>
+          <button
+            aria-label="auth.enedissgegrandlyon.modalHint.button-accessibility"
+            class="MuiButtonBase-root MuiButton-root MuiButton-text btnPrimary"
+            tabindex="0"
+            type="button"
+          >
+            <span
+              class="MuiButton-label"
+            >
+              auth.enedissgegrandlyon.modalHint.button
+            </span>
+            <span
+              class="MuiTouchRipple-root"
+            />
+          </button>
+        </div>
+      </div>
+    </div>
+    <div
+      data-test="sentinelEnd"
+      tabindex="0"
+    />
+  </div>
+</body>
 `;
diff --git a/src/components/Connection/SGEConnect/__snapshots__/StepAddress.spec.tsx.snap b/src/components/Connection/SGEConnect/__snapshots__/StepAddress.spec.tsx.snap
index 76a1438e468de8fba34a9b7ad2f5f9b43804e485..9917baafdc610e195ddc092c046f40e288211fe8 100644
--- a/src/components/Connection/SGEConnect/__snapshots__/StepAddress.spec.tsx.snap
+++ b/src/components/Connection/SGEConnect/__snapshots__/StepAddress.spec.tsx.snap
@@ -1,86 +1,55 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`StepAddress component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <StepAddress
-    onChange={[MockFunction]}
-    sgeState={
-      Object {
-        "address": "",
-        "city": "",
-        "currentStep": 0,
-        "dataConsent": false,
-        "firstName": "",
-        "lastName": "",
-        "pdl": null,
-        "pdlConfirm": false,
-        "shouldLaunchAccount": false,
-        "zipCode": null,
-      }
-    }
+<div>
+  <div
+    class="sge-step-container stepAddress"
   >
     <div
-      className="sge-step-container stepAddress"
+      class="title text-22-bold"
     >
-      <div
-        className="title text-22-bold"
-      >
-        auth.enedissgegrandlyon.addressTitle
-      </div>
-      <label
-        className="text-16-normal"
-        htmlFor="address"
-      >
-        auth.enedissgegrandlyon.address
-        <input
-          className="inputText"
-          id="address"
-          name="address"
-          onChange={[Function]}
-          type="text"
-          value=""
-        />
-      </label>
-      <label
-        className="text-16-normal"
-        htmlFor="zipCode"
-      >
-        auth.enedissgegrandlyon.zipCode
-        <input
-          className="inputText"
-          id="zipCode"
-          min={0}
-          name="zipCode"
-          onChange={[Function]}
-          type="number"
-        />
-      </label>
-      <label
-        className="text-16-normal"
-        htmlFor="city"
-      >
-        auth.enedissgegrandlyon.city
-        <input
-          className="inputText"
-          id="city"
-          name="city"
-          onChange={[Function]}
-          type="text"
-          value=""
-        />
-      </label>
+      auth.enedissgegrandlyon.addressTitle
     </div>
-  </StepAddress>
-</Provider>
+    <label
+      class="text-16-normal"
+      for="address"
+    >
+      auth.enedissgegrandlyon.address
+      <input
+        class="inputText"
+        id="address"
+        name="address"
+        type="text"
+        value=""
+      />
+    </label>
+    <label
+      class="text-16-normal"
+      for="zipCode"
+    >
+      auth.enedissgegrandlyon.zipCode
+      <input
+        class="inputText"
+        id="zipCode"
+        min="0"
+        name="zipCode"
+        type="number"
+        value=""
+      />
+    </label>
+    <label
+      class="text-16-normal"
+      for="city"
+    >
+      auth.enedissgegrandlyon.city
+      <input
+        class="inputText"
+        id="city"
+        name="city"
+        type="text"
+        value=""
+      />
+    </label>
+  </div>
+</div>
 `;
diff --git a/src/components/Connection/SGEConnect/__snapshots__/StepConsent.spec.tsx.snap b/src/components/Connection/SGEConnect/__snapshots__/StepConsent.spec.tsx.snap
index a1fa0ab9b488fbb54bef040bec55fe65130c1280..4d4e94cc71c5da336220e045dc7e6da2d59f05de 100644
--- a/src/components/Connection/SGEConnect/__snapshots__/StepConsent.spec.tsx.snap
+++ b/src/components/Connection/SGEConnect/__snapshots__/StepConsent.spec.tsx.snap
@@ -1,103 +1,62 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`StepConsent component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <StepConsent
-    onChange={[MockFunction]}
-    sgeState={
-      Object {
-        "address": "",
-        "city": "",
-        "currentStep": 0,
-        "dataConsent": false,
-        "firstName": "",
-        "lastName": "",
-        "pdl": null,
-        "pdlConfirm": false,
-        "shouldLaunchAccount": false,
-        "zipCode": null,
-      }
-    }
+<div>
+  <div
+    class="sge-step-container stepConsent"
   >
     <div
-      className="sge-step-container stepConsent"
+      class="head text-16-normal"
     >
-      <div
-        className="head text-16-normal"
-      >
-        auth.enedissgegrandlyon.headConsent
-      </div>
-      <div
-        className="title text-22-bold"
-      >
-        auth.enedissgegrandlyon.textConsent
-      </div>
-      <ul
-        className="text-16-normal"
-      >
-        <li>
-          auth.enedissgegrandlyon.consentLi1
-        </li>
-        <li>
-          auth.enedissgegrandlyon.consentLi2
-        </li>
-        <li>
-          auth.enedissgegrandlyon.consentLi3
-        </li>
-        <li>
-          auth.enedissgegrandlyon.consentLi4
-        </li>
-      </ul>
-      <label
-        className="inline"
-      >
-        <input
-          checked={false}
-          className="inputCheckbox"
-          id="dataConsent"
-          name="Data-consent-validation"
-          onChange={[Function]}
-          type="checkbox"
-        />
-        <span
-          dangerouslySetInnerHTML={
-            Object {
-              "__html": "auth.enedissgegrandlyon.consentCheck1",
-            }
-          }
-        />
-      </label>
-      <label
-        className="inline"
-      >
-        <input
-          checked={false}
-          className="inputCheckbox"
-          id="pdlConfirm"
-          name="Data-consent-validation"
-          onChange={[Function]}
-          type="checkbox"
-        />
-        <span
-          dangerouslySetInnerHTML={
-            Object {
-              "__html": "auth.enedissgegrandlyon.consentCheck2",
-            }
-          }
-        />
-      </label>
+      auth.enedissgegrandlyon.headConsent
     </div>
-  </StepConsent>
-</Provider>
+    <div
+      class="title text-22-bold"
+    >
+      auth.enedissgegrandlyon.textConsent
+    </div>
+    <ul
+      class="text-16-normal"
+    >
+      <li>
+        auth.enedissgegrandlyon.consentLi1
+      </li>
+      <li>
+        auth.enedissgegrandlyon.consentLi2
+      </li>
+      <li>
+        auth.enedissgegrandlyon.consentLi3
+      </li>
+      <li>
+        auth.enedissgegrandlyon.consentLi4
+      </li>
+    </ul>
+    <label
+      class="inline"
+    >
+      <input
+        class="inputCheckbox"
+        id="dataConsent"
+        name="Data-consent-validation"
+        type="checkbox"
+      />
+      <span>
+        auth.enedissgegrandlyon.consentCheck1
+      </span>
+    </label>
+    <label
+      class="inline"
+    >
+      <input
+        class="inputCheckbox"
+        id="pdlConfirm"
+        name="Data-consent-validation"
+        type="checkbox"
+      />
+      <span>
+        auth.enedissgegrandlyon.consentCheck2
+      </span>
+    </label>
+  </div>
+</div>
 `;
diff --git a/src/components/Connection/SGEConnect/__snapshots__/StepIdentityAndPdl.spec.tsx.snap b/src/components/Connection/SGEConnect/__snapshots__/StepIdentityAndPdl.spec.tsx.snap
index cb5b351b967f6bed46b04985a69e35c7ac07c2bd..b719879711be267defd23465fc7e0353b80721ab 100644
--- a/src/components/Connection/SGEConnect/__snapshots__/StepIdentityAndPdl.spec.tsx.snap
+++ b/src/components/Connection/SGEConnect/__snapshots__/StepIdentityAndPdl.spec.tsx.snap
@@ -1,475 +1,78 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`StepIdentityAndPdl component should be rendered correctly 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <StepIdentityAndPdl
-    onChange={[MockFunction]}
-    sgeState={
-      Object {
-        "address": "",
-        "city": "",
-        "currentStep": 0,
-        "dataConsent": false,
-        "firstName": "",
-        "lastName": "",
-        "pdl": null,
-        "pdlConfirm": false,
-        "shouldLaunchAccount": false,
-        "zipCode": null,
-      }
-    }
+<div>
+  <div
+    class="sge-step-container stepIdentity"
   >
     <div
-      className="sge-step-container stepIdentity"
+      class="title text-22-bold"
     >
-      <div
-        className="title text-22-bold"
-      >
-        auth.enedissgegrandlyon.identityTitle
-      </div>
-      <label
-        className="text-16-normal"
-        htmlFor="firstName"
-      >
-        auth.enedissgegrandlyon.firstName
-        <input
-          className="inputText"
-          id="firstName"
-          name="firstName"
-          onChange={[Function]}
-          required={true}
-          type="text"
-          value=""
-        />
-      </label>
-      <label
-        className="text-16-normal"
-        htmlFor="lastName"
-      >
-        auth.enedissgegrandlyon.lastName
-        <input
-          className="inputText"
-          id="lastName"
-          name="lastName"
-          onChange={[Function]}
-          required={true}
-          type="text"
-          value=""
-        />
-      </label>
-      <div
-        className="title text-22-bold"
-      >
-        auth.enedissgegrandlyon.pdlTitle
-      </div>
-      <label
-        className="text-16-normal"
-        htmlFor="pdl"
-      >
-        auth.enedissgegrandlyon.pdlLabel
-        <input
-          className="inputText"
-          id="pdl"
-          inputMode="numeric"
-          min={0}
-          name="pdl"
-          onChange={[Function]}
-          required={true}
-          type="number"
-        />
-      </label>
-      <div
-        className="pdl-hint text-16-normal"
-        onClick={[Function]}
+      auth.enedissgegrandlyon.identityTitle
+    </div>
+    <label
+      class="text-16-normal"
+      for="firstName"
+    >
+      auth.enedissgegrandlyon.firstName
+      <input
+        class="inputText"
+        id="firstName"
+        name="firstName"
+        required=""
+        type="text"
+        value=""
+      />
+    </label>
+    <label
+      class="text-16-normal"
+      for="lastName"
+    >
+      auth.enedissgegrandlyon.lastName
+      <input
+        class="inputText"
+        id="lastName"
+        name="lastName"
+        required=""
+        type="text"
+        value=""
+      />
+    </label>
+    <div
+      class="title text-22-bold"
+    >
+      auth.enedissgegrandlyon.pdlTitle
+    </div>
+    <label
+      class="text-16-normal"
+      for="pdl"
+    >
+      auth.enedissgegrandlyon.pdlLabel
+      <input
+        class="inputText"
+        id="pdl"
+        inputmode="numeric"
+        min="0"
+        name="pdl"
+        required=""
+        type="number"
+        value=""
+      />
+    </label>
+    <button
+      class="MuiButtonBase-root MuiButton-root MuiButton-text btnText"
+      tabindex="0"
+      type="button"
+    >
+      <span
+        class="MuiButton-label"
       >
         auth.enedissgegrandlyon.pdlHint
-      </div>
-      <SgeModalHint
-        handleCloseClick={[Function]}
-        open={false}
-      >
-        <WithStyles(ForwardRef(Dialog))
-          aria-labelledby="accessibility-title"
-          classes={
-            Object {
-              "paper": "modal-paper",
-              "root": "modal-root",
-            }
-          }
-          disableEscapeKeyDown={true}
-          onClose={[Function]}
-          open={false}
-        >
-          <ForwardRef(Dialog)
-            aria-labelledby="accessibility-title"
-            classes={
-              Object {
-                "container": "MuiDialog-container",
-                "paper": "MuiDialog-paper modal-paper",
-                "paperFullScreen": "MuiDialog-paperFullScreen",
-                "paperFullWidth": "MuiDialog-paperFullWidth",
-                "paperScrollBody": "MuiDialog-paperScrollBody",
-                "paperScrollPaper": "MuiDialog-paperScrollPaper",
-                "paperWidthFalse": "MuiDialog-paperWidthFalse",
-                "paperWidthLg": "MuiDialog-paperWidthLg",
-                "paperWidthMd": "MuiDialog-paperWidthMd",
-                "paperWidthSm": "MuiDialog-paperWidthSm",
-                "paperWidthXl": "MuiDialog-paperWidthXl",
-                "paperWidthXs": "MuiDialog-paperWidthXs",
-                "root": "MuiDialog-root modal-root",
-                "scrollBody": "MuiDialog-scrollBody",
-                "scrollPaper": "MuiDialog-scrollPaper",
-              }
-            }
-            disableEscapeKeyDown={true}
-            onClose={[Function]}
-            open={false}
-          >
-            <ForwardRef(Modal)
-              BackdropComponent={
-                Object {
-                  "$$typeof": Symbol(react.forward_ref),
-                  "Naked": Object {
-                    "$$typeof": Symbol(react.forward_ref),
-                    "propTypes": Object {
-                      "children": [Function],
-                      "className": [Function],
-                      "classes": [Function],
-                      "invisible": [Function],
-                      "open": [Function],
-                      "transitionDuration": [Function],
-                    },
-                    "render": [Function],
-                  },
-                  "displayName": "WithStyles(ForwardRef(Backdrop))",
-                  "options": Object {
-                    "defaultTheme": Object {
-                      "breakpoints": Object {
-                        "between": [Function],
-                        "down": [Function],
-                        "keys": Array [
-                          "xs",
-                          "sm",
-                          "md",
-                          "lg",
-                          "xl",
-                        ],
-                        "only": [Function],
-                        "up": [Function],
-                        "values": Object {
-                          "lg": 1280,
-                          "md": 960,
-                          "sm": 600,
-                          "xl": 1920,
-                          "xs": 0,
-                        },
-                        "width": [Function],
-                      },
-                      "direction": "ltr",
-                      "mixins": Object {
-                        "gutters": [Function],
-                        "toolbar": Object {
-                          "@media (min-width:0px) and (orientation: landscape)": Object {
-                            "minHeight": 48,
-                          },
-                          "@media (min-width:600px)": Object {
-                            "minHeight": 64,
-                          },
-                          "minHeight": 56,
-                        },
-                      },
-                      "overrides": Object {},
-                      "palette": Object {
-                        "action": Object {
-                          "activatedOpacity": 0.12,
-                          "active": "rgba(0, 0, 0, 0.54)",
-                          "disabled": "rgba(0, 0, 0, 0.26)",
-                          "disabledBackground": "rgba(0, 0, 0, 0.12)",
-                          "disabledOpacity": 0.38,
-                          "focus": "rgba(0, 0, 0, 0.12)",
-                          "focusOpacity": 0.12,
-                          "hover": "rgba(0, 0, 0, 0.04)",
-                          "hoverOpacity": 0.04,
-                          "selected": "rgba(0, 0, 0, 0.08)",
-                          "selectedOpacity": 0.08,
-                        },
-                        "augmentColor": [Function],
-                        "background": Object {
-                          "default": "#fafafa",
-                          "paper": "#fff",
-                        },
-                        "common": Object {
-                          "black": "#000",
-                          "white": "#fff",
-                        },
-                        "contrastThreshold": 3,
-                        "divider": "rgba(0, 0, 0, 0.12)",
-                        "error": Object {
-                          "contrastText": "#fff",
-                          "dark": "#d32f2f",
-                          "light": "#e57373",
-                          "main": "#f44336",
-                        },
-                        "getContrastText": [Function],
-                        "grey": Object {
-                          "100": "#f5f5f5",
-                          "200": "#eeeeee",
-                          "300": "#e0e0e0",
-                          "400": "#bdbdbd",
-                          "50": "#fafafa",
-                          "500": "#9e9e9e",
-                          "600": "#757575",
-                          "700": "#616161",
-                          "800": "#424242",
-                          "900": "#212121",
-                          "A100": "#d5d5d5",
-                          "A200": "#aaaaaa",
-                          "A400": "#303030",
-                          "A700": "#616161",
-                        },
-                        "info": Object {
-                          "contrastText": "#fff",
-                          "dark": "#1976d2",
-                          "light": "#64b5f6",
-                          "main": "#2196f3",
-                        },
-                        "primary": Object {
-                          "contrastText": "#fff",
-                          "dark": "#303f9f",
-                          "light": "#7986cb",
-                          "main": "#3f51b5",
-                        },
-                        "secondary": Object {
-                          "contrastText": "#fff",
-                          "dark": "#c51162",
-                          "light": "#ff4081",
-                          "main": "#f50057",
-                        },
-                        "success": Object {
-                          "contrastText": "rgba(0, 0, 0, 0.87)",
-                          "dark": "#388e3c",
-                          "light": "#81c784",
-                          "main": "#4caf50",
-                        },
-                        "text": Object {
-                          "disabled": "rgba(0, 0, 0, 0.38)",
-                          "hint": "rgba(0, 0, 0, 0.38)",
-                          "primary": "rgba(0, 0, 0, 0.87)",
-                          "secondary": "rgba(0, 0, 0, 0.54)",
-                        },
-                        "tonalOffset": 0.2,
-                        "type": "light",
-                        "warning": Object {
-                          "contrastText": "rgba(0, 0, 0, 0.87)",
-                          "dark": "#f57c00",
-                          "light": "#ffb74d",
-                          "main": "#ff9800",
-                        },
-                      },
-                      "props": Object {},
-                      "shadows": Array [
-                        "none",
-                        "0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12)",
-                        "0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12)",
-                        "0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12)",
-                        "0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)",
-                        "0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)",
-                        "0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)",
-                        "0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)",
-                        "0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)",
-                        "0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)",
-                        "0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)",
-                        "0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)",
-                        "0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)",
-                        "0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)",
-                        "0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)",
-                        "0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)",
-                        "0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)",
-                        "0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)",
-                        "0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)",
-                        "0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)",
-                        "0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)",
-                        "0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)",
-                        "0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)",
-                        "0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)",
-                        "0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)",
-                      ],
-                      "shape": Object {
-                        "borderRadius": 4,
-                      },
-                      "spacing": [Function],
-                      "transitions": Object {
-                        "create": [Function],
-                        "duration": Object {
-                          "complex": 375,
-                          "enteringScreen": 225,
-                          "leavingScreen": 195,
-                          "short": 250,
-                          "shorter": 200,
-                          "shortest": 150,
-                          "standard": 300,
-                        },
-                        "easing": Object {
-                          "easeIn": "cubic-bezier(0.4, 0, 1, 1)",
-                          "easeInOut": "cubic-bezier(0.4, 0, 0.2, 1)",
-                          "easeOut": "cubic-bezier(0.0, 0, 0.2, 1)",
-                          "sharp": "cubic-bezier(0.4, 0, 0.6, 1)",
-                        },
-                        "getAutoHeightDuration": [Function],
-                      },
-                      "typography": Object {
-                        "body1": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "1rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0.00938em",
-                          "lineHeight": 1.5,
-                        },
-                        "body2": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "0.875rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0.01071em",
-                          "lineHeight": 1.43,
-                        },
-                        "button": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "0.875rem",
-                          "fontWeight": 500,
-                          "letterSpacing": "0.02857em",
-                          "lineHeight": 1.75,
-                          "textTransform": "uppercase",
-                        },
-                        "caption": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "0.75rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0.03333em",
-                          "lineHeight": 1.66,
-                        },
-                        "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                        "fontSize": 14,
-                        "fontWeightBold": 700,
-                        "fontWeightLight": 300,
-                        "fontWeightMedium": 500,
-                        "fontWeightRegular": 400,
-                        "h1": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "6rem",
-                          "fontWeight": 300,
-                          "letterSpacing": "-0.01562em",
-                          "lineHeight": 1.167,
-                        },
-                        "h2": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "3.75rem",
-                          "fontWeight": 300,
-                          "letterSpacing": "-0.00833em",
-                          "lineHeight": 1.2,
-                        },
-                        "h3": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "3rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0em",
-                          "lineHeight": 1.167,
-                        },
-                        "h4": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "2.125rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0.00735em",
-                          "lineHeight": 1.235,
-                        },
-                        "h5": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "1.5rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0em",
-                          "lineHeight": 1.334,
-                        },
-                        "h6": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "1.25rem",
-                          "fontWeight": 500,
-                          "letterSpacing": "0.0075em",
-                          "lineHeight": 1.6,
-                        },
-                        "htmlFontSize": 16,
-                        "overline": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "0.75rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0.08333em",
-                          "lineHeight": 2.66,
-                          "textTransform": "uppercase",
-                        },
-                        "pxToRem": [Function],
-                        "round": [Function],
-                        "subtitle1": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "1rem",
-                          "fontWeight": 400,
-                          "letterSpacing": "0.00938em",
-                          "lineHeight": 1.75,
-                        },
-                        "subtitle2": Object {
-                          "fontFamily": "\\"Roboto\\", \\"Helvetica\\", \\"Arial\\", sans-serif",
-                          "fontSize": "0.875rem",
-                          "fontWeight": 500,
-                          "letterSpacing": "0.00714em",
-                          "lineHeight": 1.57,
-                        },
-                      },
-                      "zIndex": Object {
-                        "appBar": 1100,
-                        "drawer": 1200,
-                        "mobileStepper": 1000,
-                        "modal": 1300,
-                        "snackbar": 1400,
-                        "speedDial": 1050,
-                        "tooltip": 1500,
-                      },
-                    },
-                    "name": "MuiBackdrop",
-                  },
-                  "propTypes": Object {
-                    "classes": [Function],
-                    "innerRef": [Function],
-                  },
-                  "render": [Function],
-                  "useStyles": [Function],
-                }
-              }
-              BackdropProps={
-                Object {
-                  "transitionDuration": Object {
-                    "enter": 225,
-                    "exit": 195,
-                  },
-                }
-              }
-              className="MuiDialog-root modal-root"
-              closeAfterTransition={true}
-              disableEscapeKeyDown={true}
-              onClose={[Function]}
-              open={false}
-            />
-          </ForwardRef(Dialog)>
-        </WithStyles(ForwardRef(Dialog))>
-      </SgeModalHint>
-    </div>
-  </StepIdentityAndPdl>
-</Provider>
+      </span>
+      <span
+        class="MuiTouchRipple-root"
+      />
+    </button>
+  </div>
+</div>
 `;
diff --git a/src/components/Connection/__snapshots__/Connection.spec.tsx.snap b/src/components/Connection/__snapshots__/Connection.spec.tsx.snap
index 231973b119e83bc5c5972c545c7242f1beec4092..8e69db5839cbc322067bfa00ad82c754bccb8451 100644
--- a/src/components/Connection/__snapshots__/Connection.spec.tsx.snap
+++ b/src/components/Connection/__snapshots__/Connection.spec.tsx.snap
@@ -1,53 +1,21 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
 exports[`Connection component test should call EpglInit 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <Connection
-    fluidType={1}
+<div>
+  <div
+    class="konnector-form"
   >
-    <div
-      className="konnector-form"
-    >
-      <mock-EpglInit />
-    </div>
-  </Connection>
-</Provider>
+    <mock-epglinit />
+  </div>
+</div>
 `;
 
 exports[`Connection component test should call GrdfInit 1`] = `
-<Provider
-  store={
-    Object {
-      "clearActions": [Function],
-      "dispatch": [Function],
-      "getActions": [Function],
-      "getState": [Function],
-      "replaceReducer": [Function],
-      "subscribe": [Function],
-    }
-  }
->
-  <Connection
-    fluidType={2}
+<div>
+  <div
+    class="konnector-form"
   >
-    <div
-      className="konnector-form"
-    >
-      <mock-GrdfInit
-        onSuccess={[Function]}
-      />
-    </div>
-  </Connection>
-</Provider>
+    <mock-grdfinit />
+  </div>
+</div>
 `;