Move toast to bottom right

This commit is contained in:
Jackson Harper 2022-04-06 10:43:16 -07:00
parent 57f865c9a2
commit 53c536f0d4

View file

@ -193,7 +193,7 @@ export default function LabelsPage(): JSX.Element {
if (res.createLabel.errorCodes && res.createLabel.errorCodes.length > 0) {
showErrorToast(res.createLabel.errorCodes[0])
} else {
showSuccessToast('Label created')
showSuccessToast('Label created', { position: 'bottom-right' })
resetLabelState()
revalidate()
}