Skip to content

Commit

Permalink
fix color
Browse files Browse the repository at this point in the history
  • Loading branch information
zjy365 committed Jan 17, 2024
1 parent 88a3a3b commit b36646b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,10 @@ export default function AppMenu({ isMobile }: { isMobile: boolean }) {
</Text>
</Flex>
)}
{insideCloud && (
{!insideCloud && (
<Flex
{...baseStyle}
color={'#485058'}
w="28px"
h="28px"
borderRadius={'50%'}
Expand Down
2 changes: 1 addition & 1 deletion frontend/providers/template/src/pages/api/listTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse<
hasAddCron = true;
cron.schedule('*/5 * * * *', async () => {
const result = await (await fetch(`${baseurl}/api/updateRepo`)).json();
console.log(`scheduling cron ${new Date().toString()}`, result);
console.log(`scheduling cron`);
});
}

Expand Down

0 comments on commit b36646b

Please sign in to comment.