0
0
Fork 0

Fix some API calls that should not use an API token (#30401)

This commit is contained in:
Renaud Chaput 2024-05-23 09:30:48 +02:00 committed by GitHub
parent 2c5ab8f647
commit 15d3070754
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 9 deletions

View file

@ -22,7 +22,7 @@ export default class Trends extends PureComponent {
componentDidMount () {
const { limit } = this.props;
api().get('/api/v1/admin/trends/tags', { params: { limit } }).then(res => {
api(false).get('/api/v1/admin/trends/tags', { params: { limit } }).then(res => {
this.setState({
loading: false,
data: res.data,