Skip to content

Commit

Permalink
Issue #PS-000 fix: Fixed UT issues
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Sep 24, 2024
1 parent 0e0f311 commit 6d69225
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ManageUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ const ManageUser: React.FC<ManageUsersProps> = ({
const handleDeleteUser = () => {};

const handleFacilitatorAdded = () => {
setIsFacilitatorAdded((prev) => prev);
setIsFacilitatorAdded((prev) => !prev);
};
const handleMenuOpen = (event: any) => {
setAnchorEl(event.currentTarget);
Expand Down
1 change: 0 additions & 1 deletion src/pages/centers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import building from '../../assets/images/apartment.png';
import FilterModalCenter from '../blocks/components/FilterModalCenter';
import withAccessControl from '@/utils/hoc/withAccessControl';
import NoDataFound from '@/components/common/NoDataFound';
import { text } from 'stream/consumers';

const CentersPage = () => {
const [loading, setLoading] = useState(false);
Expand Down

0 comments on commit 6d69225

Please sign in to comment.