Skip to content

Commit

Permalink
fix: remove deprecated Grid component and replace with Grid2 component
Browse files Browse the repository at this point in the history
  • Loading branch information
kweeuhree committed Oct 18, 2024
1 parent d3be4ed commit 717bfd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/List.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React, { useState } from 'react';
import { useEnsureListPath, useUrgency } from '../hooks';
import { getUrgency } from '../utils/urgencyUtils';
import { List as UnorderedList, Box, Grid } from '@mui/material';
import { List as UnorderedList, Box } from '@mui/material';
import Grid from '@mui/material/Grid2';
import { ListItem, AddItems, TextInputElement } from '../components';

// React.memo is needed to prevent unnecessary re-renders of the List component
Expand Down

0 comments on commit 717bfd7

Please sign in to comment.