Skip to content

Commit

Permalink
Merge branch 'develop' into carlos
Browse files Browse the repository at this point in the history
  • Loading branch information
baraganio committed Apr 28, 2024
2 parents d3d7134 + 1cc2240 commit 57440ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webapp/src/components/HistoricalData.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios from 'axios';
import React, { useState, useEffect } from 'react';
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Container, TablePagination, Typography, Snackbar } from '@mui/material';
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Container, TablePagination, Typography } from '@mui/material';
import './HistoricalData.css';
import Navbar from './Navbar';

Expand All @@ -13,6 +13,7 @@ const HistoricalData = () => {

useEffect(() => {
handleShowHistory();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []); // No es necesario deshabilitar eslint, ya que no hay dependencias externas

const handleShowHistory = async () => {
Expand Down

0 comments on commit 57440ad

Please sign in to comment.