We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d798652 commit 8052924Copy full SHA for 8052924
app/components/gleam-logo.ts
@@ -2,6 +2,7 @@ import { action } from '@ember/object';
2
import Component from '@glimmer/component';
3
import { tracked } from '@glimmer/tracking';
4
import { Fit, Layout, Rive } from '@rive-app/canvas';
5
+import * as Sentry from '@sentry/ember';
6
7
interface GleamLogoSignature {
8
Element: HTMLDivElement;
@@ -96,6 +97,12 @@ export default class GleamLogoComponent extends Component<GleamLogoSignature> {
96
97
});
98
} catch (error: unknown) {
99
console.error('Error setting up Rive:', error);
100
+ Sentry.captureException(error, {
101
+ tags: {
102
+ component: 'GleamLogo',
103
+ action: 'handleDidInsert',
104
+ },
105
+ });
106
}
107
108
0 commit comments