Skip to content

Commit

Permalink
fix response command
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonded committed Aug 26, 2024
1 parent ee004f7 commit 3e5cf2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/funny/respond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const meta = new SlashCommandBuilder()
export default command(meta, async ({ interaction, client }) => {
const user = interaction.member?.user.username;

const data = await fetch(process.env.API_ENDPOINT + "/bot/commands/quotes", {
const data = await fetch(process.env.API_ENDPOINT + "/endpoint/response", {
method: "GET",
headers: {
"Content-Type": "application/json",
Expand Down

0 comments on commit 3e5cf2f

Please sign in to comment.