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

stacklok / codegate-ui / 12828185675

17 Jan 2025 11:28AM UTC coverage: 64.918% (-2.8%) from 67.699%
12828185675

Pull #103

github

web-flow
Merge 9b7fbc979 into 58d4d4776
Pull Request #103: chore: update openapi to include workspaces endpoint

211 of 401 branches covered (52.62%)

Branch coverage included in aggregate %.

19 of 56 new or added lines in 2 files covered. (33.93%)

50 existing lines in 2 files now uncovered.

420 of 571 relevant lines covered (73.56%)

26.3 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