chore: clean up dead exports after merges

This commit is contained in:
Bohdan Triapitsyn
2026-06-26 19:35:25 +03:00
parent 1f549e4525
commit fc9146eb7b
11 changed files with 4 additions and 23 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ export const isExpectedAutoReviewAssistantParent = (message: Message, expectedPa
return getMessageParentID(message) === expectedParentID;
};
export const getAutoReviewForwardKey = (run: AutoReviewRun, messageID: string): string => [
const getAutoReviewForwardKey = (run: AutoReviewRun, messageID: string): string => [
run.runtimeKey,
run.originalSessionID,
run.phase,
+2 -2
View File
@@ -2,8 +2,8 @@ import { create } from 'zustand';
import { persist, createJSONStorage } from 'zustand/middleware';
import { getSafeStorage } from '@/stores/utils/safeStorage';
export type AutoReviewPhase = 'waiting_for_reviewer' | 'waiting_for_implementer';
export type AutoReviewStatus = 'running' | 'completed' | 'stopped' | 'error';
type AutoReviewPhase = 'waiting_for_reviewer' | 'waiting_for_implementer';
type AutoReviewStatus = 'running' | 'completed' | 'stopped' | 'error';
export type AutoReviewRun = {
originalSessionID: string;