Skip to content

Commit 7f24251

Browse files
committed
feat: support sandbox redirect
1 parent 3a940d1 commit 7f24251

5 files changed

Lines changed: 266 additions & 243 deletions

File tree

apps/web/src/app/metrics-and-insights/code-review-efficiency/page.tsx

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
Divider,
3+
Grid,
34
Group,
4-
SimpleGrid,
55
Skeleton,
66
Stack,
77
Text,
@@ -114,12 +114,20 @@ export const CodeReviewEfficiencyPage = () => {
114114
<LoadableContent
115115
isLoading={isLoading}
116116
whenLoading={
117-
<SimpleGrid cols={4}>
118-
<Skeleton h={168} />
119-
<Skeleton h={168} />
120-
<Skeleton h={168} />
121-
<Skeleton h={168} />
122-
</SimpleGrid>
117+
<Grid>
118+
<Grid.Col span={{ base: 12, lg: 3 }}>
119+
<Skeleton h={168} />
120+
</Grid.Col>
121+
<Grid.Col span={{ base: 12, lg: 3 }}>
122+
<Skeleton h={168} />
123+
</Grid.Col>
124+
<Grid.Col span={{ base: 12, lg: 3 }}>
125+
<Skeleton h={168} />
126+
</Grid.Col>
127+
<Grid.Col span={{ base: 12, lg: 3 }}>
128+
<Skeleton h={168} />
129+
</Grid.Col>
130+
</Grid>
123131
}
124132
content={
125133
<Group wrap="nowrap">
@@ -227,7 +235,6 @@ export const CodeReviewEfficiencyPage = () => {
227235
</Text>
228236
</Stack>
229237
}
230-
style={{ gridColumn: "span 2" }}
231238
height={500}
232239
>
233240
<ChartReviewSpeed

0 commit comments

Comments
 (0)