Skip to content

Commit 6c44bcf

Browse files
committed
lint
1 parent eaa962c commit 6c44bcf

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/components/app/questions/layout/carousel/question-carousel.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ export default function QuestionCarousel(opts: {
2626
}) {
2727
const { heading, description, image, questions, tag } = opts;
2828

29+
console.log({
30+
image,
31+
});
32+
2933
return (
3034
<Carousel
3135
opts={{

src/components/app/questions/single/question-card.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,7 @@ export default function QuestionCard(opts: {
3030
index?: number;
3131
identifier: 'slug' | 'uid';
3232
}) {
33-
const {
34-
user,
35-
question,
36-
nextQuestion,
37-
isRoadmapQuestion = false,
38-
identifier,
39-
} = opts;
33+
const { user, question, nextQuestion, isRoadmapQuestion = false } = opts;
4034

4135
const answerFormRef = useRef<{
4236
submitForm: () => void;

0 commit comments

Comments
 (0)