mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-15 11:04:49 +00:00
Also add a new dialog to get user input when file names conflict. Previously, we were not supplying a list of existing files, so existing files were silently written over. Fixes: https://github.com/pybricks/support/issues/833
21 lines
665 B
TypeScript
21 lines
665 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2022-2023 The Pybricks Authors
|
|
|
|
import { combineReducers } from 'redux';
|
|
|
|
import deleteFileAlert from './deleteFileAlert/reducers';
|
|
import duplicateFileDialog from './duplicateFileDialog/reducers';
|
|
import newFileWizard from './newFileWizard/reducers';
|
|
import renameFileDialog from './renameFileDialog/reducers';
|
|
import renameImportDialog from './renameImportDialog/reducers';
|
|
import replaceImportDialog from './replaceImportDialog/reducers';
|
|
|
|
export default combineReducers({
|
|
duplicateFileDialog,
|
|
deleteFileAlert,
|
|
newFileWizard,
|
|
renameFileDialog,
|
|
renameImportDialog,
|
|
replaceImportDialog,
|
|
});
|