mirror of
https://github.com/diced/zipline.git
synced 2025-05-11 10:26:05 +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)}
|
||||
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>
|
||||
) : (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue