Browse Source

默认选中为view而不是protocol

sw 6 ngày trước cách đây
mục cha
commit
09dd38f86a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/states/patient/register/SelectionTypeSlice.ts

+ 1 - 1
src/states/patient/register/SelectionTypeSlice.ts

@@ -7,7 +7,7 @@ interface SelectionState {
 }
 
 const initialState: SelectionState = {
-  selected: 'protocol',
+  selected: 'view',
 };
 
 const selectionSlice = createSlice({