Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Fix download link (#1264)
Browse files Browse the repository at this point in the history
* Fix download link

* Update changelog
  • Loading branch information
Paul Sanders authored Sep 7, 2022
1 parent c49b426 commit 06945bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ The types of changes are:
* Allow passwords to be sent either base64 encode or as plaintext. [#1236](https://github.com/ethyca/fidesops/pull/1236)
* Allow worker to start up successfully for dev and dev_with_worker nox commands [#1250](https://github.com/ethyca/fidesops/pull/1250)
* Fix for pytest-asyncio bug [#1260](https://github.com/ethyca/fidesops/pull/1260)
* Fix download link in privacy center [#1264](https://github.com/ethyca/fidesops/pull/1264)

## [1.7.2](https://github.com/ethyca/fidesops/compare/1.7.1...1.7.2)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createApi, fetchBaseQuery } from "@reduxjs/toolkit/query/react";
import { addCommonHeaders } from "common/CommonHeaders";

import type { RootState } from "../../app/store";
import { BASE_API_URN, BASE_URL } from "../../constants";
import { BASE_URL } from "../../constants";
import { selectToken } from "../auth";
import {
DenyPrivacyRequest,
Expand Down Expand Up @@ -124,7 +124,7 @@ export const requestCSVDownload = async ({
}

return fetch(
`${BASE_API_URN}/privacy-request?${new URLSearchParams({
`${BASE_URL}/privacy-request?${new URLSearchParams({
...mapFiltersToSearchParams({
id,
from,
Expand Down

0 comments on commit 06945bd

Please sign in to comment.