Skip to content

Commit

Permalink
Show all devices
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Jul 23, 2024
1 parent 438019c commit 87d523c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/DevicesPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const DevicesPage = () => {
useEffectAsync(async () => {
setLoading(true);
try {
const response = await fetch('/api/devices');
const response = await fetch('/api/devices?all=true');
if (response.ok) {
setItems(await response.json());
} else {
Expand Down

0 comments on commit 87d523c

Please sign in to comment.