Skip to content

Commit

Permalink
Assets typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rishav-jha-mech authored Jun 23, 2023
1 parent b4e7d6c commit bb4c761
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/MemberRequestCard/MemberRequestCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from 'GraphQl/Mutations/mutations';
import { useTranslation } from 'react-i18next';
import { toast } from 'react-toastify';
import defaultImg from 'assets//images/blank.png';
import defaultImg from 'assets/images/blank.png';
import { errorHandler } from 'utils/errorHandler';

interface InterfaceMemberRequestCardProps {
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrgAdminListCard/OrgAdminListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import styles from './OrgAdminListCard.module.css';
import { REMOVE_ADMIN_MUTATION } from 'GraphQl/Mutations/mutations';
import { useTranslation } from 'react-i18next';
import { Link } from 'react-router-dom';
import defaultImg from 'assets//images/blank.png';
import defaultImg from 'assets/images/blank.png';
import { errorHandler } from 'utils/errorHandler';

interface InterfaceOrgPeopleListCardProps {
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrgPeopleListCard/OrgPeopleListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { toast } from 'react-toastify';
import { useTranslation } from 'react-i18next';
import { REMOVE_MEMBER_MUTATION } from 'GraphQl/Mutations/mutations';
import { Link } from 'react-router-dom';
import defaultImg from 'assets//images/blank.png';
import defaultImg from 'assets/images/blank.png';
import { errorHandler } from 'utils/errorHandler';

interface InterfaceOrgPeopleListCardProps {
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrgPostCard/OrgPostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
DELETE_POST_MUTATION,
UPDATE_POST_MUTATION,
} from 'GraphQl/Mutations/mutations';
import defaultImg from 'assets//images/blank.png';
import defaultImg from 'assets/images/blank.png';
import { useTranslation } from 'react-i18next';
import { errorHandler } from 'utils/errorHandler';
import styles from './OrgPostCard.module.css';
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserListCard/UserListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useTranslation } from 'react-i18next';
import { ADD_ADMIN_MUTATION } from 'GraphQl/Mutations/mutations';
import styles from './UserListCard.module.css';
import { Link } from 'react-router-dom';
import defaultImg from 'assets//images/blank.png';
import defaultImg from 'assets/images/blank.png';
import { errorHandler } from 'utils/errorHandler';

interface InterfaceUserListCardProps {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/OrgSettings/OrgSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { MEMBERSHIP_REQUEST } from 'GraphQl/Queries/Queries';
import { useSelector } from 'react-redux';
import type { RootState } from 'state/reducers';
import { useTranslation } from 'react-i18next';
import defaultImg from 'assets//images/blank.png';
import defaultImg from 'assets/images/blank.png';
import Button from 'react-bootstrap/Button';

function orgSettings(): JSX.Element {
Expand Down

0 comments on commit bb4c761

Please sign in to comment.