Add sentry.

This commit is contained in:
Patrick Fic
2025-10-29 10:53:58 -07:00
parent 72ff11ceab
commit accfb7a38c
9 changed files with 380 additions and 7 deletions

View File

@@ -105,7 +105,10 @@ export default function GlobalSearch() {
{!loading && (
<Text variant="titleSmall" style={{ margin: 12, alignSelf: "center" }}>
{results.length} results found
{
results.length - 1 //Need to subtract for the spacer.
}{" "}
results found
</Text>
)}

View File

@@ -104,7 +104,6 @@ function JobListItemComponent({ openImagePicker, item }) {
const styles = StyleSheet.create({
pressable: {
// marginHorizontal: 12,
marginVertical: 6,
},
outerShadow: {

View File

@@ -16,7 +16,6 @@ import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
import { ThemeSelector } from "../theme-selector/theme-selector";
import UploadDeleteSwitch from "./upload-delete-switch";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
deleteAfterUpload: selectDeleteAfterUpload,