Remove unused imports and changed and improved layout design and responsiveness in some components and fixed some bugs.
This commit is contained in:
@@ -89,7 +89,7 @@ export default function Selection({ user, page, onStart }: Props) {
|
||||
<BsBook className="text-ielts-reading h-6 w-6 md:h-8 md:w-8" />
|
||||
),
|
||||
label: "Reading",
|
||||
value: reading,
|
||||
value: reading || 0,
|
||||
tooltip: "The amount of reading exams performed.",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function Selection({ user, page, onStart }: Props) {
|
||||
<BsHeadphones className="text-ielts-listening h-6 w-6 md:h-8 md:w-8" />
|
||||
),
|
||||
label: "Listening",
|
||||
value: listening,
|
||||
value: listening || 0,
|
||||
tooltip: "The amount of listening exams performed.",
|
||||
},
|
||||
{
|
||||
@@ -105,7 +105,7 @@ export default function Selection({ user, page, onStart }: Props) {
|
||||
<BsPen className="text-ielts-writing h-6 w-6 md:h-8 md:w-8" />
|
||||
),
|
||||
label: "Writing",
|
||||
value: writing,
|
||||
value: writing || 0,
|
||||
tooltip: "The amount of writing exams performed.",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function Selection({ user, page, onStart }: Props) {
|
||||
<BsMegaphone className="text-ielts-speaking h-6 w-6 md:h-8 md:w-8" />
|
||||
),
|
||||
label: "Speaking",
|
||||
value: speaking,
|
||||
value: speaking || 0,
|
||||
tooltip: "The amount of speaking exams performed.",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function Selection({ user, page, onStart }: Props) {
|
||||
<BsClipboard className="text-ielts-level h-6 w-6 md:h-8 md:w-8" />
|
||||
),
|
||||
label: "Level",
|
||||
value: level,
|
||||
value: level || 0,
|
||||
tooltip: "The amount of level exams performed.",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user