@@ -192,7 +192,7 @@ export function CurateBox(props: CurateBoxProps) {
192192 } ) ) ;
193193 }
194194 props . onTagTextChange ( '' ) ;
195- } , [ props . curation . folder ] ) ;
195+ } , [ props . curation . folder , props . curation . game . tags ] ) ;
196196
197197 const onAddPlatform = React . useCallback ( ( platform : Platform ) => {
198198 const platforms = props . curation . game . platforms || [ ] ;
@@ -204,22 +204,22 @@ export function CurateBox(props: CurateBoxProps) {
204204 } ) ) ;
205205 }
206206 props . onPlatformTextChange ( '' ) ;
207- } , [ props . curation . folder ] ) ;
207+ } , [ props . curation . folder , props . curation . game . platforms ] ) ;
208208
209209 const onRemoveTag = React . useCallback ( ( tagId : number ) => {
210210 dispatch ( removeTag ( {
211211 folder,
212212 tagId
213213 } ) ) ;
214- } , [ props . curation . folder ] ) ;
214+ } , [ props . curation . folder , props . curation . game . tags ] ) ;
215215
216216 const onRemovePlatform = React . useCallback ( ( platformId ) => {
217217 dispatch ( removePlatform ( {
218218 folder,
219219 platformId,
220220 platformAppPaths : props . platformAppPaths
221221 } ) ) ;
222- } , [ props . curation . folder ] ) ;
222+ } , [ props . curation . folder , props . curation . game . platforms ] ) ;
223223
224224 const onToggleContentNodeView = React . useCallback ( ( tree : string [ ] ) => {
225225 dispatch ( toggleContentNodeView ( {
0 commit comments