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

stacklok / codegate-ui / 13035153683

29 Jan 2025 03:52PM UTC coverage: 72.578%. Remained the same
13035153683

Pull #228

github

web-flow
Merge 6f684a110 into 8af305dd1
Pull Request #228: refactor: token usage styles

360 of 559 branches covered (64.4%)

Branch coverage included in aggregate %.

0 of 5 new or added lines in 1 file covered. (0.0%)

786 of 1020 relevant lines covered (77.06%)

89.44 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