Skip to content

Commit

Permalink
Fixes #61 Fixes #62
Browse files Browse the repository at this point in the history
  • Loading branch information
Meefish committed Jan 8, 2025
1 parent 772d5ef commit eabe887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/services/messageService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Message } from '../types/message';
const MESSAGE_API_URL = 'https://wildlifenl-uu-michi011.apps.cl01.cp.its.uu.nl/message/';
const MESSAGES_API_URL = 'https://wildlifenl-uu-michi011.apps.cl01.cp.its.uu.nl/messages/';
const MESSAGES_API_URL = 'https://wildlifenl-uu-michi011.apps.cl01.cp.its.uu.nl/messages/experiment/';

const getAuthToken = (): string | null => {
return localStorage.getItem('authToken');
Expand Down
2 changes: 1 addition & 1 deletion src/services/questionnaireService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {AddQuestionnaire, Questionnaire} from '../types/questionnaire'
const QUESTIONNAIRE_API_URL = 'https://wildlifenl-uu-michi011.apps.cl01.cp.its.uu.nl/questionnaire/';
const QUESTIONNAIRES_API_URL = 'https://wildlifenl-uu-michi011.apps.cl01.cp.its.uu.nl/questionnaires/';
const QUESTIONNAIRES_API_URL = 'https://wildlifenl-uu-michi011.apps.cl01.cp.its.uu.nl/questionnaires/experiment/';


const getAuthToken = (): string | null => {
Expand Down

0 comments on commit eabe887

Please sign in to comment.