We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c5d6e commit 8c72badCopy full SHA for 8c72bad
apps/builder/app/builder/features/topbar/domains.tsx
@@ -80,8 +80,7 @@ export const getPublishStatusAndText = ({
80
81
const statusText = (
82
<>
83
- {textStart}
84
- <RelativeTime time={new Date(createdAt)} />
+ {textStart} <RelativeTime time={new Date(createdAt)} />
85
</>
86
);
87
apps/builder/app/builder/features/topbar/publish.tsx
@@ -127,7 +127,9 @@ const ChangeProjectDomain = ({
127
}
128
suffix={
129
<Grid flow="column" align="center">
130
- <Tooltip content={error !== undefined ? error : statusText}>
+ <Tooltip
131
+ content={error !== undefined ? error : <Text>{statusText}</Text>}
132
+ >
133
<Flex
134
align="center"
135
justify="center"
0 commit comments