fix: delete error container

This commit is contained in:
Siwoo Jeon 2025-05-25 16:49:20 +09:00
parent d41e74bb55
commit 9bfc53bf37
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ func deleteLearnedDataRun(m any, command, userId string) {
if len(data) < 1 { if len(data) < 1 {
utils.NewMessageSender(m). utils.NewMessageSender(m).
AddComponents(discordgo.TextDisplay{Content: "해당 하는 지식ㅇ을 찾을 수 없어요."}). AddComponents(utils.GetErrorContainer(discordgo.TextDisplay{Content: "해당 하는 지식ㅇ을 찾을 수 없어요."})).
SetComponentsV2(true). SetComponentsV2(true).
SetReply(true). SetReply(true).
Send() Send()

View file

@ -7,7 +7,7 @@ import (
"git.wh64.net/muffin/goMuffin/utils" "git.wh64.net/muffin/goMuffin/utils"
) )
const MUFFIN_VERSION = "0.0.0-souffle_canary.250524b-componentsv2" const MUFFIN_VERSION = "0.0.0-souffle_canary.250525a-componentsv2"
var updatedString string = utils.RegexpDecimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0] var updatedString string = utils.RegexpDecimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0]