Skip to content

Commit

Permalink
Merge pull request #9 from depromeet/feature/1/build-workflow
Browse files Browse the repository at this point in the history
chore: #1 포크의 경우 main브랜치 이름 추가
  • Loading branch information
leeminhee119 committed Jul 3, 2024
2 parents d9d00b9 + 93bbcbc commit 00f1445
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- main
pull_request:
- depromeet/layer:main
pull_request_target:
branches:
- main
- depromeet/layer:main

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion src/app/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useAtom } from "jotai";
import { messageAtom } from "@/store/messageAtom.tsx";

function MainPage() {
const [message, setMessage] = useAtom(messageAtom);
const [message] = useAtom(messageAtom);
return (
<div>
<span>welcome to layer 🎇</span>
Expand Down

0 comments on commit 00f1445

Please sign in to comment.