Skip to content

Commit

Permalink
Merge pull request #490 from mastra-ai/fix-undefined-bug
Browse files Browse the repository at this point in the history
fix: undefined bug
  • Loading branch information
Joshuafolorunsho authored Oct 10, 2024
2 parents 9735650 + 12445ae commit 9c40a1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const NameCell = ({ name }: { name: string }) => {
<div className="flex gap-3 items-center">
<div className="flex flex-col">
<Text size="sm" weight="medium" className="text-mastra-el-5 capitalize">
{name.toLowerCase()}
{name?.toLowerCase()}
</Text>
</div>
</div>
Expand Down

0 comments on commit 9c40a1e

Please sign in to comment.