mirror of
https://github.com/diced/zipline.git
synced 2025-05-12 19:06:06 +02:00
fix: finally fix ts dumb ahh error
This commit is contained in:
parent
c3bc598016
commit
055bee6286
1 changed files with 2 additions and 1 deletions
|
@ -305,7 +305,8 @@ export default function FileModal({
|
||||||
onClick={() => removeFromFolder(file)}
|
onClick={() => removeFromFolder(file)}
|
||||||
fullWidth
|
fullWidth
|
||||||
>
|
>
|
||||||
Remove from folder "{folders?.find((f) => f.id === file.folderId)?.name ?? ''}
|
Remove from folder "
|
||||||
|
{folders?.find((f: { id: string }) => f.id === file.folderId)?.name ?? ''}
|
||||||
"
|
"
|
||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue