@greatapps/common 1.1.105 → 1.1.106

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greatapps/common",
3
- "version": "1.1.105",
3
+ "version": "1.1.106",
4
4
  "description": "Shared library for GreatApps frontend applications",
5
5
  "main": "./dist/index.mjs",
6
6
  "types": "./src/index.ts",
@@ -75,24 +75,8 @@ export function QueryProvider({
75
75
  },
76
76
  mutations: {
77
77
  retry: 1,
78
- onError: (error) => {
79
- toast.error(
80
- error instanceof Error
81
- ? error.message
82
- : "Erro inesperado na operação.",
83
- );
84
- },
85
78
  },
86
79
  },
87
- queryCache: new QueryCache({
88
- onError: (error) => {
89
- toast.error(
90
- error instanceof Error
91
- ? error.message
92
- : "Ocorreu um erro inesperado. Por favor, tente novamente.",
93
- );
94
- },
95
- }),
96
80
  }),
97
81
  );
98
82