Add feedback form (#1967)

Add feedback button and form. This feedback form can be used to provide direct feedback to the SCM-Manager Team.

Co-authored-by: Matthias Thieroff <matthias.thieroff@cloudogu.com>
This commit is contained in:
Eduard Heimbuch
2022-03-10 09:39:17 +01:00
committed by GitHub
parent 390384b723
commit 4407dc6d8a
22 changed files with 235 additions and 21 deletions

View File

@@ -33,7 +33,6 @@ export type BaseContext = {
export type LegacyContext = BaseContext & {
initialize: () => void;
queryClient?: QueryClient;
};
const Context = createContext<LegacyContext | undefined>(undefined);