-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jaredlim/bxc 112 blank project #120
base: main
Are you sure you want to change the base?
Conversation
BXC-112 Select Thread Trigger Event
SummaryImplement how users will designate which event will trigger a thread's script Requirements
|
@@ -76,6 +76,7 @@ const SaveButton = () => { | |||
const { saveProject } = useProjectActions(); | |||
|
|||
const handleSaveNow = async () => { | |||
console.log("Pressed save") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed debug statement
@@ -52,7 +52,7 @@ export const FileDropDown = ({ cloudEnabled }: FielDropDownProps) => { | |||
} | |||
|
|||
const authenticatedOptions = [ | |||
{ label: "New", onClick: handleNew}, | |||
{ label: "New Blank Project", onClick: handleNew}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this change the current functionality? Right now on my local machine, I still get the template project.
added blank project option (#112 )