feat: endpoint to filter by sources

This commit is contained in:
2026-02-01 16:53:27 +00:00
parent 39ee917ef5
commit 9dd03ae2aa
3 changed files with 41 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ const StatPage = () => {
};
const onSearch = () => {
const query = inputRef.current?.value ?? ""; // read input only on click
const query = inputRef.current?.value ?? "";
axios.post("http://localhost:5000/filter/search", {
query: query
})