Link positioning issue

This commit is contained in:
Elio Struyf
2021-10-01 17:04:29 +02:00
parent 9b9bf1bfbe
commit 1c354ed976
2 changed files with 8 additions and 9 deletions
+1 -2
View File
@@ -4,9 +4,8 @@ import { RecoilRoot } from "recoil";
import { Dashboard } from "./components/Dashboard";
import * as Sentry from "@sentry/react";
import { Integrations } from "@sentry/tracing";
import './styles.css';
import { SENTRY_LINK } from "../constants";
import './styles.css';
Sentry.init({
dsn: SENTRY_LINK,
+7 -7
View File
@@ -3,12 +3,7 @@ import { render } from "react-dom";
import { ViewPanel } from "./ViewPanel";
import * as Sentry from "@sentry/react";
import { Integrations } from "@sentry/tracing";
Sentry.init({
dsn: SENTRY_LINK,
integrations: [new Integrations.BrowserTracing()],
tracesSampleRate: 0, // No performance tracing required
});
import { SENTRY_LINK } from "../constants";
// require('@vscode/codicons/dist/codicon.css');
import '@bendera/vscode-webview-elements/dist/vscode-table';
@@ -20,7 +15,12 @@ import '@bendera/vscode-webview-elements/dist/vscode-table-cell';
import '@bendera/vscode-webview-elements/dist/vscode-collapsible';
import '@bendera/vscode-webview-elements/dist/vscode-checkbox';
import '@bendera/vscode-webview-elements/dist/vscode-label';
import { SENTRY_LINK } from "../constants";
Sentry.init({
dsn: SENTRY_LINK,
integrations: [new Integrations.BrowserTracing()],
tracesSampleRate: 0, // No performance tracing required
});
declare const acquireVsCodeApi: <T = unknown>() => {
getState: () => T;