• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stacklok / codegate-ui / 12832410853

17 Jan 2025 03:52PM UTC coverage: 66.018% (+0.4%) from 65.582%
12832410853

Pull #104

github

web-flow
Merge 6c98391c2 into 8ba7d369a
Pull Request #104: feat: add pagination for alerts table

223 of 416 branches covered (53.61%)

Branch coverage included in aggregate %.

40 of 42 new or added lines in 5 files covered. (95.24%)

455 of 611 relevant lines covered (74.47%)

59.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/hooks/useCurrentPromptStore.ts
1
import { create } from "zustand";
2

3
type CurrentPromptState = {
4
  currentPromptId: string;
5
  setCurrentPromptId: (id: string) => void;
6
};
7

8
export const useCurrentPromptStore = create<CurrentPromptState>((set) => ({
2✔
9
  currentPromptId: "",
10
  setCurrentPromptId: (id: string) => set({ currentPromptId: id }),
×
11
}));
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc