Skip to content

Commit b1c48c5

Browse files
Replaces beta with sandbox & removes extra percent sign from events data (#822)
1 parent a849401 commit b1c48c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/beacon-app/src/components/auth/LandingHeader/LandingHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function LandingHeader() {
5050
</Link>
5151
)}
5252
<Link to="/" className="font-bold capitalize text-primary">
53-
Ensign Beta
53+
Ensign Sandbox
5454
</Link>
5555
{/* <Link to="/">
5656
<Button variant="tertiary" size="small">

web/beacon-app/src/features/topics/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export const getFormattedEventDetailData = (events: TopicEvents[]) => {
170170
events: {
171171
...event?.events,
172172
value: formatNumberByLocale(event?.events?.value),
173-
percent: `${formatNumberByLocale(event?.events?.percent)}%`,
173+
percent: `${formatNumberByLocale(event?.events?.percent)}`,
174174
},
175175
};
176176
});

0 commit comments

Comments
 (0)