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

stacklok / codegate-ui / 13154320997

05 Feb 2025 09:33AM UTC coverage: 73.651%. Remained the same
13154320997

Pull #248

github

web-flow
Merge 37a5dc891 into 3b0900cd6
Pull Request #248: chore(deps): bump @hey-api/client-fetch from 0.7.1 to 0.8.0

373 of 574 branches covered (64.98%)

Branch coverage included in aggregate %.

787 of 1001 relevant lines covered (78.62%)

84.62 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