🐛 fix(EditNodeModal): remove unnecessary whitespace

🐛 fix(exportModal): remove unnecessary whitespace
🐛 fix(tailwind.config.js): fix keyframes names and add missing comma
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-11 17:18:43 -03:00
commit 39c20fe46b
3 changed files with 4 additions and 9 deletions

View file

@ -81,7 +81,6 @@ export default function EditNodeModal({ data }: { data: NodeDataType }) {
});
setNodeValue(!nodeValue);
}
const handleOnNewValue = (newValue: any, name) => {
data.node.template[name].value = newValue;

View file

@ -71,10 +71,7 @@ export default function ExportModal() {
setChecked(event);
}}
/>
<label
htmlFor="terms"
className="export-modal-save-api text-sm"
>
<label htmlFor="terms" className="export-modal-save-api text-sm">
Save with my API keys
</label>
</div>

View file

@ -130,11 +130,11 @@ module.exports = {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
keyframes: {
"slideDown": {
slideDown: {
from: { height: 0 },
to: { height: 100},
to: { height: 100 },
},
"slideUp": {
slideUp: {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
@ -227,5 +227,4 @@ module.exports = {
require("@tailwindcss/typography"),
require("daisyui"),
],
};