Skip to content

Commit

Permalink
Merge pull request #375 from suvarnakale/release-1.0.0
Browse files Browse the repository at this point in the history
Issue #PS-2281 fixes: fixes in player integration
  • Loading branch information
itsvick authored Nov 8, 2024
2 parents 8eb3d77 + d308ad6 commit 3a8dace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/PlayerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const getHierarchy = async (identifier: any) => {

export const getQumlData = async (identifier: any) => {
try {
const API_URL = `${process.env.NEXT_PUBLIC_WORKSPACE_BASE_URL}${URL_CONFIG.API.QUESTIONSET_READ}${identifier}`;
const API_URL = `${URL_CONFIG.API.QUESTIONSET_READ}${identifier}`;
const FIELDS = URL_CONFIG.PARAMS.HIERARCHY_FEILDS;
const response = await axios.get(`${API_URL}?fields=${FIELDS}`);
console.log('response =====>', response);
Expand Down

0 comments on commit 3a8dace

Please sign in to comment.