summaryrefslogtreecommitdiffhomepage
path: root/app/lib/problem-report.android.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/problem-report.android.js')
-rw-r--r--app/lib/problem-report.android.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/lib/problem-report.android.js b/app/lib/problem-report.android.js
deleted file mode 100644
index 30a944e178..0000000000
--- a/app/lib/problem-report.android.js
+++ /dev/null
@@ -1,13 +0,0 @@
-// @flow
-
-import { MobileAppBridge } from 'NativeModules';
-
-const collectProblemReport = (toRedact: string) => {
- return MobileAppBridge.collectProblemReport(toRedact);
-};
-
-const sendProblemReport = (email: string, message: string, savedReport: string) => {
- return MobileAppBridge.sendProblemReport(email, message, savedReport);
-};
-
-export { collectProblemReport, sendProblemReport };