Skip to content

Commit

Permalink
Auth on delete
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywhitaker3 committed Apr 10, 2021
1 parent f92c040 commit 492b5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/Graphics/TableRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class TableRow extends Component {
}

delete = (id) => {
var url = 'api/speedtest/delete/' + id;
var url = 'api/speedtest/delete/' + id + '?token=' + window.token;

Axios.delete(url)
.then((resp) => {
Expand Down

0 comments on commit 492b5df

Please sign in to comment.