Skip to content

Commit

Permalink
Rename label
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronshaf committed Nov 17, 2024
1 parent 60aa2ef commit 288fc33
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions packages/idb-cache-app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { View } from "@instructure/ui-view";
import { Flex } from "@instructure/ui-flex";
import { Heading } from "@instructure/ui-heading";
import { NumberInput } from "@instructure/ui-number-input";
import { TextInput } from "@instructure/ui-text-input";
import GitHubLink from "./components/GitHubLink";
import BlankStat from "./components/BlankStat";
import { CacheKey } from "./components/CacheKey";
Expand Down Expand Up @@ -259,7 +258,7 @@ const App = () => {
<Flex>
<Flex.Item size="33.3%">
<Metric
renderLabel="Generate Test Data"
renderLabel="fixtures"
data-testid="generate-time"
renderValue={
timeToGenerate !== null ? (
Expand All @@ -286,7 +285,7 @@ const App = () => {
<Flex.Item size="33.3%">
<Metric
data-testid="hash1"
renderLabel="Hash"
renderLabel="hash"
renderValue={hash1 || <BlankStat />}
/>
</Flex.Item>
Expand Down Expand Up @@ -323,7 +322,7 @@ const App = () => {
</Flex.Item>
<Flex.Item size="33.3%">
<Metric
renderLabel="Hash"
renderLabel="hash"
data-testid="hash2"
renderValue={hash2 || <BlankStat />}
/>
Expand Down Expand Up @@ -360,7 +359,7 @@ const App = () => {
</Flex.Item>
<Flex.Item size="33.3%">
<Metric
renderLabel="Chunks"
renderLabel="chunks"
data-testid="count-value"
renderValue={
typeof itemCount === "number" ? (
Expand Down

0 comments on commit 288fc33

Please sign in to comment.