Skip to content

Commit 78f10ff

Browse files
committed
fix: duplicate declaration
1 parent 4cdcf58 commit 78f10ff

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
3-
import { OyeyemiJimohQuiz } from './oyeyemi_jimoh_quiz.js';
43
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
54
import { DasiaEnglishQuiz } from './dasia_english_quiz.js';
65
import { JosephCaballeroQuiz } from './joseph_caballero_quiz.js';
6+
import { OyeyemiJimohQuiz } from './oyeyemi_jimoh_quiz.js';
77
import { YafiahAbdullahQuiz } from './yafiah_abdullah_quiz.js';
88

9-
109
export const Quizzes = Symbol.for('Quizzes');
1110

1211
// Add your quiz provider here.
13-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, DasiaEnglishQuiz];
1412

1513
const QUIZ_PROVIDERS = [
1614
AnthonyMaysQuiz,
1715
YafiahAbdullahQuiz,
1816
AnotherQuiz,
1917
JosephCaballeroQuiz,
2018
OyeyemiJimohQuiz,
19+
DasiaEnglishQuiz,
2120
];
2221

23-
2422
@Module({
2523
providers: [
2624
...QUIZ_PROVIDERS,

0 commit comments

Comments
 (0)