fix(Maps): send filename instead of full path to delete endpoint

This commit is contained in:
Ben Gauger 2026-05-04 14:39:10 -06:00 committed by Jake Turner
parent 3a2e92ae19
commit 6a68bacaa7
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ export default function MapsManager(props: {
try {
setDeletingFileKey(file.key)
await api.deleteMapRegionFile(file.key)
await api.deleteMapRegionFile(file.name)
addNotification({
type: 'success',
message: `${file.name} has been deleted.`,