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

stacklok / codegate-ui / 12832507016

17 Jan 2025 03:59PM UTC coverage: 65.795% (-0.2%) from 66.018%
12832507016

Pull #113

github

web-flow
Merge 07c4c1ae6 into a38e2cdd2
Pull Request #113: fix: breaking changes in openapi spec

223 of 418 branches covered (53.35%)

Branch coverage included in aggregate %.

18 of 25 new or added lines in 4 files covered. (72.0%)

4 existing lines in 1 file now uncovered.

456 of 614 relevant lines covered (74.27%)

59.11 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