chore: clean up dead exports after merges
This commit is contained in:
@@ -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,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;
|
||||
|
||||
Reference in New Issue
Block a user