fix: set retention query is fixed

This commit is contained in:
Palash gupta
2022-05-20 13:39:23 +05:30
parent 1315b43aad
commit bbed3fda22

View File

@@ -11,7 +11,7 @@ const setRetention = async (
const response = await axios.post<PayloadProps>(
`/settings/ttl?duration=${props.totalDuration}&type=${props.type}${
props.coldStorage
? `&coldStorage=${props.coldStorage};toColdDuration=${props.toColdDuration}`
? `&coldStorage=${props.coldStorage}&toColdDuration=${props.toColdDuration}`
: ''
}`,
);