File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ interface ConfirmDeleteRepoProps {
1212 onConfirm : ( ) => void ;
1313}
1414
15- const ConfirmDeleteRepo : React . FC < ConfirmDeleteRepoProps > = ( {
15+ const DeleteRepoDialog : React . FC < ConfirmDeleteRepoProps > = ( {
1616 repoName,
1717 open,
1818 onClose,
@@ -67,4 +67,4 @@ const ConfirmDeleteRepo: React.FC<ConfirmDeleteRepoProps> = ({
6767 ) ;
6868} ;
6969
70- export default ConfirmDeleteRepo ;
70+ export default DeleteRepoDialog ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import CodeActionButton from '../../components/CustomButtons/CodeActionButton';
2323import { trimTrailingDotGit } from '../../../db/helper' ;
2424import { fetchRemoteRepositoryData } from '../../utils' ;
2525import { SCMRepositoryMetadata } from '../../../types/models' ;
26- import ConfirmDeleteRepo from './Components/ConfirmDeleteRepo ' ;
26+ import DeleteRepoDialog from './Components/DeleteRepoDialog ' ;
2727
2828interface RepoData {
2929 _id : string ;
@@ -269,7 +269,7 @@ const RepoDetails: React.FC = () => {
269269 </ Card >
270270 </ GridItem >
271271
272- < ConfirmDeleteRepo
272+ < DeleteRepoDialog
273273 repoName = { data . name }
274274 open = { confirmDeleteOpen }
275275 onClose = { ( ) => setConfirmDeleteOpen ( false ) }
You can’t perform that action at this time.
0 commit comments