Skip to content

Commit

Permalink
#3074-fixed pop up card
Browse files Browse the repository at this point in the history
  • Loading branch information
caiodasilva2005 committed Dec 22, 2024
1 parent 329b60f commit dc35d6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/src/components/PopUpAlert.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Box } from '@mui/material';
import React, { useEffect, useState } from 'react';
import { PopUp } from 'shared';
import NotificationCard from './NotificationCard';
import PopUpCard from './PopUpCard';
import { useHistory } from 'react-router-dom';
import { useCurrentUserPopUps, useRemoveUserPopUp } from '../hooks/pop-ups.hooks';

Expand Down Expand Up @@ -40,7 +40,7 @@ const PopUpAlert: React.FC = () => {
}}
>
{!removeIsLoading && !popUpsIsLoading && currentPopUp && (
<NotificationCard popUp={currentPopUp} removePopUp={removePopUpWrapper} onClick={onClick} />
<PopUpCard popUp={currentPopUp} removePopUp={removePopUpWrapper} onClick={onClick} />
)}
</Box>
);
Expand Down
File renamed without changes.

0 comments on commit dc35d6d

Please sign in to comment.