This commit is contained in:
Eduard Heimbuch
2019-07-05 11:35:40 +02:00
parent 22d323367f
commit 35683543a7
3 changed files with 1 additions and 6 deletions

View File

@@ -39,6 +39,5 @@ public class LegacyRepositoryService {
} }
return new NamespaceAndNameDto(repo.getName(), repo.getNamespace()); return new NamespaceAndNameDto(repo.getName(), repo.getNamespace());
} }
} }

View File

@@ -3,7 +3,6 @@ import React from "react";
import { withRouter } from "react-router-dom"; import { withRouter } from "react-router-dom";
class DummyComponent extends React.Component<Props, State> { class DummyComponent extends React.Component<Props, State> {
render() { render() {
return ( return (
<> <>

View File

@@ -27,10 +27,7 @@ import Profile from "./Profile";
type Props = { type Props = {
authenticated?: boolean, authenticated?: boolean,
links: Links, links: Links
//context objects
history: History
}; };
class Main extends React.Component<Props> { class Main extends React.Component<Props> {