Skip to content

Commit a0f0695

Browse files
committed
fix eslint
1 parent d864840 commit a0f0695

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

src/components/catalog/catchers/guides/sentry.vue

-6
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,9 @@
3838
</template>
3939

4040
<script>
41-
import GuideSection from '../../GuideSection';
4241
import GuideStepBlock from '../../GuideStepBlock';
4342
import GuideHeader from '../../GuidePageHeader';
4443
import TokenBlock from '../../../project/TokenBlock';
45-
import CodeBlock from '../../../utils/CodeBlock';
46-
import UiButton from '../../../utils/UiButton';
4744
import { getSentryDSN } from '../../../../utils';
4845
4946
export default {
@@ -52,9 +49,6 @@ export default {
5249
GuideStepBlock,
5350
GuideHeader,
5451
TokenBlock,
55-
CodeBlock,
56-
GuideSection,
57-
UiButton,
5852
},
5953
data() {
6054
return {

src/components/project/settings/Integrations.vue

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@ export default Vue.extend({
6363
required: true,
6464
},
6565
},
66+
computed: {
67+
sentryDSN(): string {
68+
return getSentryDSN(this.project.token);
69+
},
70+
},
6671
methods: {
6772
/**
6873
* Revokes integration token with confirmation
@@ -87,11 +92,6 @@ export default Vue.extend({
8792
});
8893
},
8994
},
90-
computed: {
91-
sentryDSN(): string {
92-
return getSentryDSN(this.project.token);
93-
},
94-
},
9595
});
9696
</script>
9797

0 commit comments

Comments
 (0)