chore(ui): Fix changeset Vale error.

Signed-off-by: Johan Persson <johanopersson@gmail.com>
This commit is contained in:
Johan Persson
2026-02-05 15:22:56 +01:00
committed by GitHub
parent 741a98d10f
commit 9f9ba37221
+1 -1
View File
@@ -2,7 +2,7 @@
'@backstage/ui': patch
---
Allow data to be passed inplace to the `useTable` hook using the property `data` instead of `getData()` for mode `"complete"`.
Allow data to be passed directly to the `useTable` hook using the property `data` instead of `getData()` for mode `"complete"`.
This simplifies usage as data changes, rather than having to perform a `useEffect` when data changes, and then reloading the data. It also happens immediately, so stale data won't remain until a rerender (with an internal async state change), so less flickering.