Skip to content

Commit

Permalink
give correct toasts
Browse files Browse the repository at this point in the history
  • Loading branch information
MnorbertVii committed Oct 8, 2024
1 parent 3dff115 commit aa1a920
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Applications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ const Applications = (props: any) => {
const mapState = (state: any) => ({
myApplications: state.myApplications,
currentApplication: state.currentApplication,
loading: state.myApplications.loading
loading: state.myApplications.loading,
});

export default connect(mapState, {
Expand Down
2 changes: 1 addition & 1 deletion src/redux/actions/applications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
fetchSingleOwnApplication,
} from '../actiontypes/applicationTypes';
import axios from './axiosconfig';
import { toast } from 'react-hot-toast';
import { toast } from 'react-toastify';
import creator from './creator';
import { MY_APPLICATIONS } from 'redux';

Expand Down

0 comments on commit aa1a920

Please sign in to comment.