✨ Q/A Session Interface#25
Conversation
shristigupta12
commented
Oct 17, 2023
- resolves [Task]: Q/A Session Interface #17
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
I have made a rough functionality code all in the page.tsx file and the updation of answer is not working as of now. |
|
npm run build command is not showing any errors in my vs code but vercel deployment is still facing issues. Will solve this problem tomorrow |
|
@yashsehgal please give your reviews on everything I did till now |
yashsehgal
left a comment
There was a problem hiding this comment.
Please make the following changes and make sure you try building before pushing changes. Use npm run build
There was a problem hiding this comment.
Do add random questions of different word lengths for better UI clarity. You can use ChatGPT to generate questions.
| {data.map((q, index) => { | ||
| return ( | ||
| <QnaQuesCard | ||
| key={index} | ||
| question={q.question} | ||
| score = {q.score} | ||
| questionId={q.questionId} | ||
| /> |
There was a problem hiding this comment.
Try to use better naming conventions. Instead of q use question
There was a problem hiding this comment.
This type is related to Q/A session, thus this type doesn't need a new file,
instead add this type to the qna-session.d.ts file
|
Also, the background of box card is breaking and showing dark bg color. Make sure to find it's causing styles and fix this as well. cc @shristigupta12
|
Yeah, I also tried that. The issue was occurring during runtime. Note: Always, make sure the write a check for empty states. |
Noted |
|
I have imported the TipTap but I have not styled it yet. Hence I have commented it's component and have shown the old text-area for now |
|
@yashsehgal please give review on the code till now |
