Skip to content

Commit

Permalink
Merge branch 'vertical-stepper-implemenetation' of https://github.com…
Browse files Browse the repository at this point in the history
…/egovernments/DIGIT-Frontend into vertical-stepper-implemenetation
  • Loading branch information
ashish-egov committed Oct 7, 2024
2 parents 6c05bf1 + d631f37 commit bcce31b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const useGenerateIdCampaign = ({ type, hierarchyType, filters, campaignId
forceUpdate: true,
hierarchyType: hierarchyType,
campaignId: campaignId,
source:source
source: source
},
body: type === "boundary" ? (updatedFilters === undefined ? { Filters: null } : { Filters: { boundaries: updatedFilters } }) : {},
config: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const downloadExcelWithCustomName = ({ fileStoreId = null, customName = n
const downloadExcel = (blob, fileName) => {
const link = document.createElement("a");
link.href = URL.createObjectURL(blob);
link.download = fileName + ".xlsx";
link.download = `${fileName}.xlsx`;
document.body.append(link);
link.click();
link.remove();
Expand Down

0 comments on commit bcce31b

Please sign in to comment.