feat(quests): improve 3d island styling

fix(test): fix context image not appearing on test screen
This commit is contained in:
shafin-r
2026-03-12 01:09:07 +06:00
parent f00aad2bbd
commit 121cc2bf71
5 changed files with 1220 additions and 180 deletions

View File

@ -156,29 +156,6 @@ class ApiClient {
);
}
// async startPracticeSession(
// token: string,
// sessionData: PracticeSessionRequest,
// ): Promise<SessionResponse> {
// return this.authenticatedRequest<SessionResponse>(`/sessions/`, token, {
// method: "POST",
// body: JSON.stringify(sessionData),
// });
// }
// async startTargetedPracticeSession(
// token: string,
// sessionData: TargetedSessionRequest,
// ): Promise<TargetedSessionResponse> {
// return this.authenticatedRequest<TargetedSessionResponse>(
// `/sessions/`,
// token,
// {
// method: "POST",
// body: JSON.stringify(sessionData),
// },
// );
// }
async startSession(
token: string,
sessionData: SessionRequest,