From 9f9ba372216128056444af532b8c0b062a6f78fe Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Thu, 5 Feb 2026 15:22:56 +0100 Subject: [PATCH] chore(ui): Fix changeset Vale error. Signed-off-by: Johan Persson --- .changeset/long-months-laugh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/long-months-laugh.md b/.changeset/long-months-laugh.md index b44ece4e78..c6c52abb2d 100644 --- a/.changeset/long-months-laugh.md +++ b/.changeset/long-months-laugh.md @@ -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.