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

stacklok / codegate-ui / 12954472498

24 Jan 2025 05:25PM UTC coverage: 71.466%. Remained the same
12954472498

Pull #153

github

web-flow
Merge cdf7c7898 into bddaed048
Pull Request #153: chore(deps): bump @hey-api/client-fetch from 0.6.0 to 0.7.1

347 of 589 branches covered (58.91%)

Branch coverage included in aggregate %.

735 of 925 relevant lines covered (79.46%)

65.54 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