Skip to content

Commit 7d2376b

Browse files
committed
feat(frontend): add punctuation to empty state messages
- Add period to "No media in progress" text - Add period to "No recommendations available" text - Improve consistency in empty state message formatting
1 parent 9008c3d commit 7d2376b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/frontend/app/routes/_dashboard._index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export default function Page() {
158158
)}
159159
</ApplicationGrid>
160160
) : (
161-
<Text c="dimmed">No media in progress</Text>
161+
<Text c="dimmed">No media in progress.</Text>
162162
)}
163163
</Section>
164164
))
@@ -182,7 +182,7 @@ export default function Page() {
182182
)}
183183
{loaderData.userMetadataRecommendations.response.length ===
184184
0 ? (
185-
<Text c="dimmed">No recommendations available</Text>
185+
<Text c="dimmed">No recommendations available.</Text>
186186
) : null}
187187
</Section>
188188
))

0 commit comments

Comments
 (0)