Skip to content
5 changes: 3 additions & 2 deletions .openhands/microagents/branding.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Instruction for Pull Requests
Every time you submit a Pull Request, append this exact footer:
---

## Every time you submit a Pull Request, append this exact footer:

🚀 **Autonomously created by Mistral (Model: devstral-latest)**
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ app.get('/rest/api/2/user', (req, res) => {
const username = req.query.username;
const user = ALL_USERS.find((u) => u.name === username);
if (!user) {
res
.status(404)
.json({
errorMessages: [
`User '${username}' does not exist or you do not have permission to view it.`,
],
errors: {},
});
res.status(404).json({
errorMessages: [
`User '${username}' does not exist or you do not have permission to view it.`,
],
errors: {},
});
return;
}
res.json(user);
Expand Down
10 changes: 4 additions & 6 deletions docs/superpowers/plans/2026-03-29-auto-refresh.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,12 +405,10 @@ describe('DataRefreshService — visibility', () => {
expect(state().lastFetchTime).not.toBeNull();

// Simulate stale data by moving lastFetchTime back
(service as any).sources
.get('jira')!
.state.update((s: DataSourceState) => ({
...s,
lastFetchTime: Date.now() - REFRESH_INTERVAL_MS - 1000,
}));
(service as any).sources.get('jira')!.state.update((s: DataSourceState) => ({
...s,
lastFetchTime: Date.now() - REFRESH_INTERVAL_MS - 1000,
}));

service.onVisibilityRegained();
expect(callCount).toBe(1);
Expand Down
Loading
Loading