convert number

This commit is contained in:
hamid zarghami
2025-07-14 09:29:54 +03:30
parent a324ab55e7
commit 2b6946e0b2
5 changed files with 70 additions and 12 deletions
+1 -10
View File
@@ -42,7 +42,7 @@ const Home: FC = () => {
onClick={() => handleChangeWorkspace(item.id)}
>
<div className='mt-5'>
{item.businessName}
{item.businessName + ' ( ' + item.slug + ' )'}
</div>
<div className='mt-5'>
@@ -58,15 +58,6 @@ const Home: FC = () => {
</div>
<div className='mt-5 flex justify-end w-full'>
<a onClick={(e) => {
e.stopPropagation()
}} target='_blank' href={`${import.meta.env.VITE_DZONE_URL}/${item.slug}`}>
{`${import.meta.env.VITE_DZONE_URL}/${item.slug}`}
</a>
</div>
</div>
)