mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-02 22:02:39 +02:00
Rename MCQ to multi-choice
This commit is contained in:
1
.astro/types.d.ts
vendored
1
.astro/types.d.ts
vendored
@@ -1 +1,2 @@
|
|||||||
/// <reference types="astro/client" />
|
/// <reference types="astro/client" />
|
||||||
|
/// <reference path="content.d.ts" />
|
@@ -1,18 +1,13 @@
|
|||||||
import {
|
import {
|
||||||
BookOpenIcon,
|
FileTextIcon, ListIcon,
|
||||||
FileTextIcon,
|
ListTodoIcon, SparklesIcon,
|
||||||
ListCheckIcon,
|
type LucideIcon
|
||||||
ListIcon,
|
|
||||||
ListTodoIcon,
|
|
||||||
MapIcon,
|
|
||||||
SparklesIcon,
|
|
||||||
type LucideIcon,
|
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
import { useEffect, useId, useState } from 'react';
|
import { useEffect, useId, useState } from 'react';
|
||||||
import { isLoggedIn } from '../../lib/jwt';
|
import { isLoggedIn } from '../../lib/jwt';
|
||||||
import { showLoginPopup } from '../../lib/popup';
|
import { showLoginPopup } from '../../lib/popup';
|
||||||
import { UpgradeAccountModal } from '../Billing/UpgradeAccountModal';
|
import { UpgradeAccountModal } from '../Billing/UpgradeAccountModal';
|
||||||
import { billingDetailsOptions, useIsPaidUser } from '../../queries/billing';
|
import { billingDetailsOptions } from '../../queries/billing';
|
||||||
import {
|
import {
|
||||||
clearQuestionAnswerChatMessages,
|
clearQuestionAnswerChatMessages,
|
||||||
storeQuestionAnswerChatMessages,
|
storeQuestionAnswerChatMessages,
|
||||||
@@ -24,9 +19,7 @@ import {
|
|||||||
import { useToast } from '../../hooks/use-toast';
|
import { useToast } from '../../hooks/use-toast';
|
||||||
import { cn } from '../../lib/classname';
|
import { cn } from '../../lib/classname';
|
||||||
import { getUrlParams } from '../../lib/browser';
|
import { getUrlParams } from '../../lib/browser';
|
||||||
import { useParams } from '../../hooks/use-params';
|
|
||||||
import { FormatItem } from '../ContentGenerator/FormatItem';
|
import { FormatItem } from '../ContentGenerator/FormatItem';
|
||||||
import { AIQuizLayout } from './AIQuizLayout';
|
|
||||||
import { queryClient } from '../../stores/query-client';
|
import { queryClient } from '../../stores/query-client';
|
||||||
import { useQuery } from '@tanstack/react-query';
|
import { useQuery } from '@tanstack/react-query';
|
||||||
import { getAiCourseLimitOptions } from '../../queries/ai-course';
|
import { getAiCourseLimitOptions } from '../../queries/ai-course';
|
||||||
@@ -76,7 +69,7 @@ export function AIQuizGenerator() {
|
|||||||
value: AllowedFormat;
|
value: AllowedFormat;
|
||||||
}[] = [
|
}[] = [
|
||||||
{
|
{
|
||||||
label: 'MCQ',
|
label: 'Multi-Choice',
|
||||||
formatTitle: 'Multiple Choice Question',
|
formatTitle: 'Multiple Choice Question',
|
||||||
icon: ListTodoIcon,
|
icon: ListTodoIcon,
|
||||||
value: 'mcq',
|
value: 'mcq',
|
||||||
|
Reference in New Issue
Block a user