このコミットが含まれているのは:
2026-07-16 01:19:36 +09:00
コミット 3d88fdecb1
12個のファイルの変更534行の追加484行の削除
+8 -8
ファイルの表示
@@ -140,15 +140,15 @@ const DialogueProvider: FC<Props> = ({ children }) => {
setPendingIds (current => [...current, id])
try
{
const shouldClose = await action.onSelect ()
if (shouldClose !== false)
closeRequest (id)
}
{
const shouldClose = await action.onSelect ()
if (shouldClose !== false)
closeRequest (id)
}
finally
{
setPendingIds (current => current.filter (_1 => _1 !== id))
}
{
setPendingIds (current => current.filter (_1 => _1 !== id))
}
},
[closeRequest, pendingIds])