Skip to content

Commit

Permalink
fix(scaffold): Use plain strings in NamesCell template
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed Sep 14, 2024
1 parent 2827718 commit 753f097
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ export const Loading = () => <div>Loading...</div>
export const Empty = () => {
return (
<div className="rw-text-center">
{'No ${pluralCamelName} yet. '}
No ${pluralCamelName} yet.{' '}
<Link
to={routes.${newRouteName}()}
className="rw-link"
>
{'Create one?'}
Create one?
</Link>
</div>
)
Expand Down

0 comments on commit 753f097

Please sign in to comment.