summaryrefslogtreecommitdiffhomepage
path: root/app/lib/problem-report.android.js
blob: 63deb102e43cfbe2376842270efbc156d0a75880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// @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 };