diff --git a/src/frontend/src/components/PopUpAlert.tsx b/src/frontend/src/components/PopUpAlert.tsx index 452f28800d..0a0b271b66 100644 --- a/src/frontend/src/components/PopUpAlert.tsx +++ b/src/frontend/src/components/PopUpAlert.tsx @@ -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'; @@ -40,7 +40,7 @@ const PopUpAlert: React.FC = () => { }} > {!removeIsLoading && !popUpsIsLoading && currentPopUp && ( - + )} ); diff --git a/src/frontend/src/components/NotificationCard.tsx b/src/frontend/src/components/PopUpCard.tsx similarity index 100% rename from src/frontend/src/components/NotificationCard.tsx rename to src/frontend/src/components/PopUpCard.tsx