See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
"use client"; | |
import { useState, useEffect } from 'react'; | |
const setQueryParams = <T>(key: string, value: T) => { | |
if (typeof window === 'undefined') | |
return undefined; | |
const url = new URL(window.location.href); | |
url.searchParams.set(key, JSON.stringify(value)); | |
window.history.pushState({}, '', url.toString()); |
app.background = gradient(rgb(120, 120, 120), rgb(30, 30, 30)) | |
app.stepsSinceNotification = 0 | |
app.stepsForNotification = 30 | |
class Phone(object): | |
def __init__(self, appDict, owner, backgroundColor): | |
self.appDict = appDict | |
self.owner = owner | |
self.apps = [] |