-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from IT-Cotato/develop/CSQ-5_apply_user_error…
…_monitoring Develop/csq 5 apply user error monitoring
- Loading branch information
Showing
10 changed files
with
261 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,6 @@ yarn-debug.log* | |
yarn-error.log* | ||
|
||
# API key | ||
.env | ||
.env | ||
# Sentry Config File | ||
.sentryclirc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import * as Sentry from '@sentry/react'; | ||
|
||
export const feedbackIntegration = Sentry.feedbackIntegration({ | ||
// Additional SDK configuration goes in here, for example: | ||
colorScheme: 'light', | ||
formTitle: 'Give Feedback', | ||
nameLabel: '성함', | ||
namePlaceholder: '', | ||
messageLabel: '상세 내용', | ||
isRequiredLabel: '(필수)', | ||
emailPlaceholder: '', | ||
messagePlaceholder: '발생한 오류 또는 사용하면서의 피드백을 작성해주세요.', | ||
addScreenshotButtonLabel: '스크린샷 추가', | ||
removeScreenshotButtonLabel: '스크린샷 삭제', | ||
submitButtonLabel: '제출하기', | ||
cancelButtonLabel: '취소', | ||
successMessage: '피드백이 성공적으로 제출되었습니다.', | ||
successColor: '#37922C', | ||
errorColor: '#DC4200', | ||
themeLight: { | ||
foreground: 'black', | ||
background: 'white', | ||
accentBackground: '#FFA000', | ||
}, | ||
themeDark: { | ||
foreground: 'white', | ||
background: '#242321', | ||
accentBackground: '#C63C00', | ||
}, | ||
autoInject: false, | ||
}); |
Oops, something went wrong.