rez-table-listing-mui 1.3.34 → 1.3.36

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.
@@ -216,6 +216,22 @@ export function TableFilter({
216
216
  }
217
217
 
218
218
  setTabValue(newValue);
219
+ if (newValue === 0) {
220
+ setFilterMaster((prev) => {
221
+ if (!prev) return prev;
222
+ return {
223
+ ...prev,
224
+ saved_filters: {
225
+ ...(prev.saved_filters ?? {}),
226
+ selectedId: "",
227
+ selectedName: "",
228
+ description: "",
229
+ is_shared: false,
230
+ is_editable: false,
231
+ },
232
+ };
233
+ });
234
+ }
219
235
 
220
236
  if (tabType === "Filter") {
221
237
  setEditMode(false);
@@ -9,7 +9,7 @@ const LoginButton = () => {
9
9
  setLoading(true);
10
10
  const api_url = "https://api.eth-qa.rezolut.in/api/enrol/auth";
11
11
  // const api_url = "http://localhost:6011/api/auth";
12
- const email_id = "kartik.shetty@rezolut.in";
12
+ const email_id = "shraddha.nandurkar@rezolut.in";
13
13
  const email_otp = "123456";
14
14
  const sub_domain = "universal";
15
15