Skip to content

Commit

Permalink
Merge pull request #185 from marvelai-org/main
Browse files Browse the repository at this point in the history
renaming fix sync
  • Loading branch information
yunusj authored Nov 25, 2024
2 parents 8c2ac1b + 27aaf4c commit a5a1ae5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import { TOOLS_ID } from '@/constants/tools';
import styles from './styles';

import FlashCardsOutput from './toolRenderers/FlashCardsOutput';
import QuizQuizOutput from './toolRenderers/QuizQuizOutput';
import QuizOutput from './toolRenderers/QuizOutput';

import { convertToUnixTimestamp } from '@/utils/FirebaseUtils';
import { copyToClipboard, exportToCSV } from '@/utils/ToolHistoryUtils';

const DRAWER_RENDERERS = {
[TOOLS_ID.QUIZ_GENERATOR]: QuizQuizOutput,
[TOOLS_ID.QUIZ_GENERATOR]: QuizOutput,
[TOOLS_ID.FLASHCARDS_GENERATOR]: FlashCardsOutput,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Grid, List, ListItem, Typography } from '@mui/material';

import styles from '../styles';

const QuizQuizOutput = ({ data }) => {
const QuizOutput = ({ data }) => {
const panelData = data?.response || [];

const renderExplanation = (explanation) => {
Expand Down Expand Up @@ -51,4 +51,4 @@ const QuizQuizOutput = ({ data }) => {
);
};

export default QuizQuizOutput;
export default QuizOutput;

0 comments on commit a5a1ae5

Please sign in to comment.