typo: no type provided yet

This commit is contained in:
hsjobeki 2022-12-12 08:17:07 +01:00
parent 2576d9085c
commit 9d8b3f6c8e
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ export default function FunctionItem(props: FunctionItemProps) {
color: !fn_type ? "text.secondary" : "text.primary",
}}
>
{`${fn_type || "No type yet provided"} `}
{`${fn_type || "No type provided yet."} `}
</Typography>
</>
)}

View File

@ -182,7 +182,7 @@ export const Preview = (props: PreviewProps) => {
color: "text.primary",
fontSize: "1rem",
}}
secondary={fn_type || "no type yet provided"}
secondary={fn_type || "no type provided yet."}
primary="function signature "
/>
</ListItem>