fix(header): fix missing Divider, Badge, IconUserShield and navigate
This commit is contained in:
@@ -3,7 +3,6 @@ import {
|
||||
Box,
|
||||
Card,
|
||||
Grid,
|
||||
GridCol,
|
||||
Group,
|
||||
Progress,
|
||||
Stack,
|
||||
@@ -224,9 +223,9 @@ const JennaAnalytic = () => {
|
||||
Topik Pertanyaan Terbanyak
|
||||
</Title>
|
||||
<Stack gap="xs">
|
||||
{topTopics.map((item, index) => (
|
||||
{topTopics.map((item) => (
|
||||
<Box
|
||||
key={index}
|
||||
key={item.topic}
|
||||
p="sm"
|
||||
bg={dark ? "#334155" : "#F1F5F9"}
|
||||
style={{
|
||||
@@ -270,8 +269,8 @@ const JennaAnalytic = () => {
|
||||
Jam Tersibuk
|
||||
</Title>
|
||||
<Stack gap="md">
|
||||
{busyHours.map((item, index) => (
|
||||
<Box key={index}>
|
||||
{busyHours.map((item) => (
|
||||
<Box key={item.period}>
|
||||
<Group justify="space-between" mb={5}>
|
||||
<Text size="sm" fw={500} c={dark ? "white" : "gray.9"}>
|
||||
{item.period}
|
||||
|
||||
Reference in New Issue
Block a user