chore:(ags bt): add pointer cursor
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-12-16 00:30:18 -05:00
parent ea06868e39
commit 29c59c3b1f
2 changed files with 1 additions and 1 deletions

View file

@ -9,7 +9,6 @@ import { replaceInFile, npmRun } from './lib';
const FLAKE = process.env.FLAKE as string; const FLAKE = process.env.FLAKE as string;
// FIXME: update msg is broken
const updatePackageJson = async(workspaceDir: string, updates: object) => { const updatePackageJson = async(workspaceDir: string, updates: object) => {
const currentPackageJson = await readPackageJSON(`${workspaceDir}/package.json`); const currentPackageJson = await readPackageJSON(`${workspaceDir}/package.json`);

View file

@ -109,6 +109,7 @@ export default class DeviceWidget extends Widget.Revealer {
const button = ( const button = (
<button <button
cursor="pointer"
onButtonReleaseEvent={() => { onButtonReleaseEvent={() => {
rev.revealChild = !rev.revealChild; rev.revealChild = !rev.revealChild;
}} }}