-
Notifications
You must be signed in to change notification settings - Fork 2.7k
feat(linear): import Linear issues into threads + deep two-way integration (#3703) #3711
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
base: main
Are you sure you want to change the base?
Changes from all commits
da60517
b3ad31a
342a1da
50e12eb
34931ef
1f04d05
e184aa7
13aba65
511410b
f948fce
a037ddb
766d42e
4356002
08fa28b
2638ae9
5ab69b5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Medium t3code/apps/mobile/src/Stack.tsx Line 231 in 2638ae9
The new 🤖 Copy this AI Prompt to have your agent fix this: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import Svg, { Path } from "react-native-svg"; | ||
|
|
||
| /** Linear brand mark. Defaults to the current-color tint when no color given. */ | ||
| export function LinearIcon(props: { readonly size?: number; readonly color?: string }) { | ||
| const size = props.size ?? 18; | ||
| return ( | ||
| <Svg width={size} height={size} viewBox="0 0 100 100" fill="none"> | ||
| <Path | ||
| fill={props.color ?? "#5E6AD2"} | ||
| d="M1.225 61.523c-.222-.949.908-1.546 1.597-.857l36.512 36.512c.69.69.092 1.82-.857 1.597C20.15 94.612 5.388 79.85 1.225 61.523ZM.002 46.889a.99.99 0 0 0 .29.76l52.062 52.061a.99.99 0 0 0 .76.29c2.765-.169 5.47-.559 8.1-1.152.75-.169 1.014-1.084.47-1.63L2.784 38.32c-.545-.545-1.46-.28-1.63.47A50.229 50.229 0 0 0 .002 46.89ZM4.472 29.34a.99.99 0 0 0 .208 1.104l64.878 64.877a.99.99 0 0 0 1.104.208 50.293 50.293 0 0 0 5.807-3.132.99.99 0 0 0 .154-1.53L9.135 23.38a.99.99 0 0 0-1.53.154 50.29 50.29 0 0 0-3.132 5.807ZM12.293 18.229c-.309-.309-.334-.803-.045-1.13C21.376 6.626 34.637 0 49.45 0 76.869 0 99.1 22.231 99.1 49.65c0 14.813-6.626 28.074-17.099 37.202-.327.29-.821.264-1.13-.045L12.293 18.23Z" | ||
| /> | ||
| </Svg> | ||
| ); | ||
| } |
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.
Empty env bypasses defaults
Medium Severity
The new fork overrides use
??onprocess.env, so an empty string (e.g. a placeholder in.env/.env.localmerged vialoadRepoEnv) is treated as set and replaces the documented upstream defaults. That can yield an emptyios.bundleIdentifier, a brokenupdates.url, or invalid EAS owner/project values instead of falling back like “unset”.Reviewed by Cursor Bugbot for commit 5ab69b5. Configure here.