Unverified Commit 351eba98 authored by Guillermo Sanz López's avatar Guillermo Sanz López Committed by GitHub
Browse files

Merge pull request #4 from Telefonica/react-query

React query
parents be31484b 888f1360
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -24,19 +24,6 @@ module.exports = {
    'react/no-unescaped-entities': 'off',
    'import/no-anonymous-default-export': 'off',

    // add new line above comment
    'lines-around-comment': [
      'error',
      {
        beforeLineComment: true,
        beforeBlockComment: true,
        allowBlockStart: true,
        allowClassStart: true,
        allowObjectStart: true,
        allowArrayStart: true
      }
    ],

    // add new line above return
    'newline-before-return': 'error',

+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@
    "@mui/x-data-grid": "6.0.3",
    "@popperjs/core": "2.11.7",
    "@reduxjs/toolkit": "1.9.5",
    "@tanstack/react-query": "^5.8.9",
    "aes-js": "^3.1.2",
    "apexcharts-clevision": "3.28.5",
    "axios": "1.4.0",
+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ const Navigation = props => {
                sx={{
                  pt: 0,
                  transition: 'padding .25s ease',
                  '& > :first-child': { mt: '0' },
                  '& > :first-of-type': { mt: '0' },
                  pr: !navCollapsed || (navCollapsed && navHover) ? 4.5 : 1.25
                }}
              >
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ const Accordion = () => {
            borderBottomRightRadius: 0
          }),
          '& + .MuiCollapse-root': {
            '& .MuiAccordionDetails-root:first-child': {
            '& .MuiAccordionDetails-root:first-of-type': {
              paddingTop: 0
            }
          }
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ const Table = () => {
    MuiTableRow: {
      styleOverrides: {
        root: ({ theme }) => ({
          '& .MuiTableCell-head:not(.MuiTableCell-paddingCheckbox):first-child, & .MuiTableCell-root:not(.MuiTableCell-paddingCheckbox):first-child ':
          '& .MuiTableCell-head:not(.MuiTableCell-paddingCheckbox):first-of-type, & .MuiTableCell-root:not(.MuiTableCell-paddingCheckbox):first-of-type ':
            {
              paddingLeft: theme.spacing(5)
            },
Loading