Skip to content

Commit 17439a5

Browse files
committed
fix: forgot to edit version 💀
1 parent f1290a2 commit 17439a5

File tree

10 files changed

+40
-40
lines changed

10 files changed

+40
-40
lines changed

apps/daemon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "daemon",
33
"type": "module",
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"scripts": {
66
"start": "./stardustd",
77
"build:debug": "bun build src/server.ts --compile --sourcemap --outfile stardustd",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"type": "module",
55
"private": true,
66
"scripts": {

apps/web/src/components/app-sidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export function AppSidebar({ session, credentials }: AppSidebarProps) {
143143
</SidebarMenu>
144144
</SidebarGroupContent>
145145
</SidebarGroup>
146-
{isAdmin && (
146+
{isAdmin ? (
147147
<SidebarGroup>
148148
<SidebarGroupLabel>
149149
<Settings className="size-4 mr-2" />
@@ -167,7 +167,7 @@ export function AppSidebar({ session, credentials }: AppSidebarProps) {
167167
</SidebarMenu>
168168
</SidebarGroupContent>
169169
</SidebarGroup>
170-
)}
170+
) : null}
171171
</SidebarContent>
172172
<SidebarFooter>
173173
<SidebarMenu>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stardust",
33
"private": true,
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"scripts": {
66
"build": "turbo build",
77
"dev": "turbo dev",

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stardust/common",
33
"type": "module",
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"description": "",
66
"scripts": {
77
"check-types": "tsc --noEmit"

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stardust/config",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"type": "module",
55
"description": "",
66
"keywords": [],

packages/db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stardust/db",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "",
55
"type": "module",
66
"scripts": {

packages/theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stardust/theme",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"type": "module",
55
"dependencies": {
66
"@catppuccin/palette": "^1.7.1"

pnpm-lock.yaml

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workspaces/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "workspaces",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"type": "module",
55
"scripts": {
66
"build": "node build.js"

0 commit comments

Comments
 (0)