commit_hash
stringlengths
40
40
input
stringlengths
13
7.99k
output
stringlengths
5
155
full_message
stringlengths
6
8.96k
8306b4cc27a9d168dec9f8bf9b7955d549c595b6
--- package-lock.json @@ -3218,9 +3218,9 @@ } }, "@walmart/welcomeme-mini-app": { - "version": "0.16.0", - "resolved": "https://npme.walmart.com/@walmart/welcomeme-mini-app/-/welcomeme-mini-app-0.16.0.tgz", - "integrity": "sha512-nYZEdUc57FUygVAUbzLVTknMrACH41vs9RODk9xCf8UuFIo1ztxM+nt2dO...
welcomeme-mini version bump v0.17.0
welcomeme-mini version bump v0.17.0
ae9cf8bd1d23a39f09e88c8a7a706441978d8499
--- graphql.yml @@ -24,7 +24,6 @@ applications: - 'v3' - 'Drop14' - name: 'GetTeamById' - hash: '8a0ff1bceff296ade72cd86c88273c0924510d42ff6bd3487819814045781f31' queryTemplate: 'src/queries/getTeamById.graphql' tags: - 'v2' @@...
Removed hash values
Removed hash values
260a50fcc25d204c0fcd43cd1e0e130dae44ff9c
--- packages/allspark-foundation/__tests__/Translation/client.test.tsx @@ -35,19 +35,19 @@ describe('TranslationClient', () => { beforeEach(() => { jest.clearAllMocks(); - translationClient = TranslationClient(DefaultConfig); + translationClient = TranslationClient({ ...DefaultConfig }); }); it(...
build fail fix translation client
build fail fix translation client
b2c71f9521fad3435d040349a23eafdbcbba3cb4
--- src/components/TeamList.tsx @@ -19,6 +19,7 @@ import { ListItem, SkeletonText, } from '@walmart/gtp-shared-components'; +import {textingMethods} from '@walmart/wmconnect-mini-app'; import {Images} from '../images'; import { useDailyRoster, @@ -341,8 +342,8 @@ export const TeamChatCard = (props: { p...
Add team message button function
Add team message button function
9e471562cb5360f6da832c8e29381ae350a54dba
--- src/screens/RosterDetailScreen/StoreRosterDetailScreen/useStoreRosterDetails.ts @@ -15,7 +15,7 @@ export const useHeaderAndSubtext = ( ) => { const siteTranslationContext = useTotalSiteOrTotalStore(); const primaryTeam = useGetViewersPrimaryTeam(); - const isPrimaryTeam = primaryTeam?.[0].teamId === teamSta...
Update src/screens/RosterDetailScreen/StoreRosterDetailScreen/useStoreRosterDetails.ts
Update src/screens/RosterDetailScreen/StoreRosterDetailScreen/useStoreRosterDetails.ts Co-authored-by: AI Code Assistant <AI-Code-Assistant@email.wal-mart.com>
1b54eab7360ef4d9a302ab8c0adfe89854cc4f32
--- packages/allspark-foundation/allspark.config.js @@ -16,9 +16,9 @@ module.exports = { 'react-native-screens': {}, }, }, - }, - ios: { - sources: ['source "https://github.com/CocoaPods/Specs.git"'], - pods: [['GoogleUtilities', ':modular_headers => true']], + ios: { + sources: ['s...
fix: fixes after testing integration
fix: fixes after testing integration
66ca536b79c05d48a17a6b2de1a1337b5d1913b3
--- .github/pull_request_template.md @@ -1,7 +1,8 @@ ## Note: PR/Template Process for Allspark-core: [Link](https://confluence.walmart.com/pages/viewpage.action?pageId=655900878#AllSparkIntegrateaFeatureAppwithCore-SubmitaPRtomergetodevelop) -## YOUR PR WILL NOT BE REVIEWED IF THE TEMPLATE IS INCOMPLETE! +> [!IMPOR...
updating pr template
updating pr template
b21ea2c1c731bcf2331cad4e88d02b04d5cd39e8
--- src/components/TeamList.tsx @@ -35,6 +35,7 @@ import {associateIsClockedIn} from '../utils'; import {Team} from '../types'; import {useTranslation} from 'react-i18next'; import {TEXTING_I18N_NAMESPACE} from '../translations'; +import {WHOLE_STORE} from '../constants'; const styles = StyleSheet.create({ lis...
add constants for Wholestore
add constants for Wholestore
54a43d41c382b383765d4b6002a14d977f39a37b
--- packages/allspark-foundation-hub/package.json @@ -1,6 +1,6 @@ { "name": "@walmart/allspark-foundation-hub", - "version": "1.3.7", + "version": "1.3.8", "description": "", "main": "lib/index.js", "types": "lib/index.d.ts", --- packages/allspark-foundation-hub/src/Store/Hooks/index.ts @@ -3,3 +3,5 @@...
Expose type for get viewer primary team function
Expose type for get viewer primary team function
b242c7f324a14a2c2990e8d159b9df36c671b989
--- graphql.yml @@ -8,12 +8,10 @@ applications: - name: 'dev' persistedQueries: - name: 'GetAssociateClockStatus' - hash: 'b4080db4f80721f28469fdce6584ae8afe567ee4c200d77b6889912ec1c0d214' queryTemplate: 'src/queries/getAssociateClockStatus.graphql' tags: ...
removed hash values
removed hash values
3dd0644518e85621edf64a7b3089c0c97bca8039
--- commitlint.config.ts @@ -10,7 +10,9 @@ const config: UserConfig = { ['feat', 'fix', 'docs', 'refactor', 'test', 'build', 'ci', 'chore', 'style'] ], 'scope-empty': [0] // scope is an optional field - } + }, + // ignore revert commits that are auto created from GitHub UI + ignores: [(commit) => c...
chore: update commitlint rule to ignore revert commit message (#4553)
chore: update commitlint rule to ignore revert commit message (#4553) Co-authored-by: Maksym Novakh - m0n09mr <Maksym.Novakh0@walmart.com>
823594bfe02ac596fe16b5620a25eef541e502c1
--- packages/allspark-foundation-hub/src/HubFeature/SupplyChain/Components/ShiftFilter/types.ts @@ -1,15 +1,14 @@ -export interface ShiftFilterProps { +export type Shift = { shiftId: string; teamImage?: { uri: string; }; +}; +export interface ShiftFilterProps extends Shift { handleSelectShift: (shiftId...
Updatin types
Updatin types
d3d7e1e5d84bfec467c8769715107af70783b4c8
--- packages/allspark-foundation-hub/__tests__/HubFeature/shared/__snapshots__/ActionButtonGroup.test.tsx.snap @@ -11,8 +11,8 @@ exports[`ActionButtonGroup renders action button group component with required p "bottom": 0, "display": "flex", "flexDirection": "row", - "justifyContent": "space-b...
feat: updated snapshot
feat: updated snapshot
e37d5529b49b3fea17729c76d42452ce5264f0df
--- ios/Podfile.lock @@ -427,7 +427,7 @@ PODS: - React - react-native-safe-area-context (3.3.2): - React-Core - - react-native-scanner-3.0 (0.1.4): + - react-native-scanner-3.0 (0.1.7): - Firebase/Analytics - React - ScanditBarcodeCapture (= 6.14.0-beta.3) @@ -1005,7 +1005,7 @@ SPEC CHECKS...
Scanner3: Add more symbology supports
Scanner3: Add more symbology supports
c0a29bb669538c023bae92f12bd9be0eb0135586
--- package-lock.json @@ -51,7 +51,7 @@ "@walmart/counts-component-miniapp": "0.1.5", "@walmart/emergency-mini-app": "1.25.1", "@walmart/exception-mini-app": "1.5.1", - "@walmart/facilities-management-miniapp": "0.6.69", + "@walmart/facilities-management-miniapp": "0.6.67", ...
removed fixit changes
removed fixit changes
2b53f450285c472d47e5b271beff25c5ca70abc0
--- packages/allspark-foundation/src/Feature/AllsparkFeatureManager.ts @@ -376,4 +376,14 @@ export class FeatureModuleManager { return `${this._id}_${featureId}_${featureTag}_${screenTag}`; } ); + + public Screen = memoize( + (featureId: string, screenId: string, builder: BuildScreenConfig) => { + ...
feat: add screen component to feature manager to build a single feature screen
feat: add screen component to feature manager to build a single feature screen
ebeedf95b7d8bb55a10dbb78d7ca67274bff9665
--- packages/allspark-foundation-hub/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.25.7](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundati...
chore(version): updating package version
chore(version): updating package version - @walmart/allspark-foundation@7.16.5 - @walmart/allspark-foundation-hub@1.25.7 - @walmart/ax-components@1.2.7 - @walmart/my-walmart-hub@1.6.4
9c8b401d019e99bc73a5da5b7a162f2e1cd80e13
--- package-lock.json @@ -5421,9 +5421,9 @@ "integrity": "sha512-vL0+hmLX3mP3jXomwGL+kxp2aRLe002I+b+LL+wVbmOdRdXBvA7gbA5VJeRFkvaUQfU2SlRVLYJwv34HT9I8jw==" }, "@walmart/shelfavailability-mini-app": { - "version": "1.0.0", - "resolved": "https://npme.walmart.com/@walmart/shelfavailability-mini-...
SA-239 package-lock for sa 1.2.1
SA-239 package-lock for sa 1.2.1
5fd3b046b3991ec65a222815db13f60bdfa0242b
--- package-lock.json @@ -48,7 +48,7 @@ "@walmart/exception-mini-app": "1.4.2", "@walmart/facilities-management-miniapp": "0.6.42", "@walmart/feedback-all-spark-miniapp": "0.9.33", - "@walmart/financial-wellbeing-feature-app": "1.8.1", + "@walmart/financial-wellbeing-feature-app...
bumped financial-wellbeing-feature-app 1.10.0
bumped financial-wellbeing-feature-app 1.10.0
4ce48ea61d03581f08976960759f8925b7114b5f
--- packages/associate-exp-hub-hub/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.13.1](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/a...
chore(version): updating package version
chore(version): updating package version - @walmart/associate-exp-hub-hub@2.13.1 - @walmart/associate-exp-hub-mini-app@1.5.1
98c7a6400fbb84f022a31a5dea91ed780adf8824
--- packages/allspark-graphql-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.9](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-graphql-c...
chore(version): updating package version
chore(version): updating package version - @walmart/allspark-graphql-client@0.0.9 - @walmart/allspark-redux-store@1.0.8
6acaf3b01c82bdf0a53e4b7f970e7114be10fd8b
--- sonar-project.properties @@ -0,0 +1,11 @@ +sonar.projectKey=com.walmart.stores.allspark.associateExpHub +sonar.projectName=AssociateExpHubMiniApp +sonar.projectVersion=1.0.0 +sonar.host.url=http://sonar.looper.prod.walmartlabs.com + +sonar.sources=src +sonar.tests=__tests__ +sonar.exclusions=src/images +sonar.sourc...
feat(ui): update sonar properties file
feat(ui): update sonar properties file
fe359ee18a6c5440029eb782936a37dc755e09ec
--- apps/example/devtools.js @@ -0,0 +1,3 @@ +import { ConsoleApi } from '@walmart/allspark-foundation/DeveloperMenu/ConsoleApi' + +ConsoleApi.attach(console); \ No newline at end of file --- apps/example/index.js @@ -1,9 +1,12 @@ import 'react-native-get-random-values'; import { registerRootComponent } from 'expo'...
chore(example): attach console api for dev variant
chore(example): attach console api for dev variant
d90c4e742422f7382b969a838f5fe39382ed9131
--- package.json @@ -93,7 +93,7 @@ "@walmart/react-native-logger": "1.35.0", "@walmart/react-native-scanner-3.0": "0.10.4", "@walmart/react-native-sumo-sdk": "2.8.0", - "@walmart/roster-mini-app": "3.8.0", + "@walmart/roster-mini-app": "3.8.1", "@walmart/ui-components": "1.15.1", "@walmar...
chore(deps): update roster-mini-app to 3.8.1 for ADA fixes
chore(deps): update roster-mini-app to 3.8.1 for ADA fixes
9bb7f596764c276d53517039df03709ae77bbbc2
--- ios/Podfile.lock @@ -1917,7 +1917,7 @@ PODS: - React-Core - react-native-safe-area-context (4.10.1): - React-Core - - react-native-scanner-3.0 (0.6.3): + - react-native-scanner-3.0 (0.6.6): - Firebase/Analytics - React - ScanditBarcodeCapture (= 6.23.2) @@ -2833,7 +2833,7 @@ SPEC CHECK...
upgrade scanner3.0 to 0.6.6
upgrade scanner3.0 to 0.6.6
a15093674bcb772541bc5f918614e46811fc775c
--- packages/me-at-walmart-athena-queries/src/getAssociatePreference.graphql @@ -0,0 +1,12 @@ +query getAssociatePreferences($win: String!, $site: Int!) { + associatePreferences(walmartIdentificationNumber: $win) { + meAtWalmartPreferences { + managerExperiencePreferences { + myTeams(businessUnitNumber:...
Adding getAssociatePreferences query initial commit
Adding getAssociatePreferences query initial commit
8c5356ae28af0a08954482ec149a97b2fddcdd5b
--- package-lock.json @@ -64,7 +64,7 @@ "@walmart/iteminfo-mini-app": "7.7.4", "@walmart/learning-mini-app": "17.0.4", "@walmart/manager-approvals-miniapp": "0.2.4", - "@walmart/metrics-mini-app": "0.18.6", + "@walmart/metrics-mini-app": "0.19.3", "@walmart/mod-flex-min...
metrics version bump
metrics version bump
3b42cd49c4802848487ea373bc9dabe9a974e24f
--- targets/US/package.json @@ -144,7 +144,7 @@ "@walmart/schedule-mini-app": "0.118.2", "@walmart/shelfavailability-mini-app": "1.5.37", "@walmart/shop-gnfr-mini-app": "1.0.131", - "@walmart/sidekick-mini-app": "4.83.7", + "@walmart/sidekick-mini-app": "4.84.5", "@walmart/store-feature-orders...
chore: bump sidekick@4.84.5
chore: bump sidekick@4.84.5
3bbbae073030c1f6dea1664ef47db6638d6a3d8e
--- package.json @@ -189,12 +189,12 @@ "redux-devtools-extension": "^2.13.8", "redux-saga": "^1.1.3", "redux-thunk": "^2.4.0", - "uuid": "^3.3.2", "reduxsauce": "^1.2.0", "reselect": "^4.0.0", "rn-fetch-blob": "^0.12.0", "seamless-immutable": "^7.1.4", "semver": "^7.3.4", + ...
reorder
reorder
e5644401fb80ca8e4d7984d986c86ea98ae148d1
--- .looper-pr.yml @@ -13,6 +13,11 @@ flows: - (name Yarn Install) yarn install - (name Test Coverage) yarn run coverage + commit-convention-checker: + - echo 'conventional commit disabled' + semantic-dry-run: + - echo 'semantic dryrun disabled' + envs: global: variables: --- package.json...
fix: SMDV-9999 update looper
fix: SMDV-9999 update looper
98428cc0d73530511be7942f7a30aaf472369131
--- package-lock.json @@ -83,7 +83,7 @@ "@walmart/taskit-mini-app": "0.47.0", "@walmart/time-clock-mini-app": "0.30.0", "@walmart/ui-components": "1.6.0", - "@walmart/welcomeme-mini-app": "0.71.0", + "@walmart/welcomeme-mini-app": "0.73.0", "@walmart/wfm-ui": "0.2.25", ...
chore: welcome-me version bump
chore: welcome-me version bump
11b645e6ba32aaea0987830a6217cc9dcbf7f885
--- package-lock.json @@ -56,7 +56,7 @@ "@walmart/inbox-mini-app": "0.82.3", "@walmart/iteminfo-mini-app": "7.1.4", "@walmart/manager-approvals-miniapp": "0.2.1", - "@walmart/me-field-mini-app": "12.0.5", + "@walmart/me-field-mini-app": "12.0.10", "@walmart/metrics-mini...
feat: :arrow_up: Bump learning mini app version to 12.0.10
feat: :arrow_up: Bump learning mini app version to 12.0.10
883342479ca9abfe4d15b544fceccb32ea43b083
--- src/screens/MessagesScreen.tsx @@ -281,15 +281,22 @@ export const MessagesScreen: FC<MessagesScreenProps> = (props) => { const channelId = getChannelIdFromChannelPath(channelData?.id); if (recipients && recipients.length > 0) { - await notifyRecipientsWithPush( - capitalize(viewerFir...
add error log
add error log
fe110c3d6c452829e4f954d26efb6214a3396b16
--- packages/associate-exp-hub-team-switcher/src/components/team-switcher/MyWalmartTeamSwitcherFilter.tsx @@ -211,103 +211,93 @@ const MyWalmartTeamSwitcherComponent: React.FC<TeamSwitcherProps> = ({ * - Work Context should only contain actual team data, not initialization state * - Widgets wait for valid team ...
feat(ui): cleanup logs
feat(ui): cleanup logs
a51a100c7e857f495cbce9372d04cb1dc53a1354
--- package.json @@ -148,7 +148,7 @@ "@types/semver": "^7.3.4", "@types/uuid": "^8.3.0", "@walmart/allspark-foundation": "6.27.4", - "@walmart/allspark-foundation-hub": "1.2.6", + "@walmart/allspark-foundation-hub": "1.2.10", "@walmart/allspark-graphql-client": "~6.3.28", "@walmart/allspa...
fix(ui): Update manager experience hub version for work hub regeression
fix(ui): Update manager experience hub version for work hub regeression
576ba2fd459f35257af495fba7b5e82ba1371b74
--- graphql.yml @@ -42,7 +42,7 @@ applications: tags: - "v1" - name: "GetTeamsByStore" - hash: "0d9bcce8cdce8831861e22bd66c43d0891aef2304b2bab61e449c5570aa564d2" + hash: "e500ff0792181beb5a6281effd5b5324834295856eaaa4c2af8336f6643a0a44" queryTemp...
Update the graphql to includeManagement
Update the graphql to includeManagement
fc757b4efbfe939345511b48799da24a633fc182
--- targets/US/package.json @@ -110,7 +110,7 @@ "@walmart/ims-print-services-ui": "2.15.3", "@walmart/inbox-mini-app": "0.96.6", "@walmart/iteminfo-mini-app": "7.16.2", - "@walmart/learning-mini-app": "20.0.36", + "@walmart/learning-mini-app": "20.0.37", "@walmart/manager-approvals-miniapp": "...
feat: :sparkles: Bump learning mini app version to 20.0.37
feat: :sparkles: Bump learning mini app version to 20.0.37
5faa010d7da24cd820a618202c67586d3a52d4d0
--- package-lock.json @@ -3268,9 +3268,9 @@ } }, "@walmart/allspark-home-mini-app": { - "version": "0.5.5", - "resolved": "https://npme.walmart.com/@walmart/allspark-home-mini-app/-/allspark-home-mini-app-0.5.5.tgz", - "integrity": "sha512-n6oO9a8wQGL2+FD0mAJQyFkw8Kb9LIjj9dFuNCKeC3dMdoYW...
Updating home and me mini apps
Updating home and me mini apps
cde051583f3f71dd0923ae91a5fb3c861f63d1c1
--- .looper.multibranch.yml @@ -78,7 +78,7 @@ envs: APPCENTER_API_KEY_iOS: "%{credentials.secret('appcenter_iOS')}" APPCENTER_API_KEY_ANDROID: "%{credentials.secret('appcenter_android')}" APPCENTER_DISTRIBUTE_DESTINATIONS: '*' - APPCENTER_DISTRIBUTION_GROUP_URL_SEGMENT: "AllSpark Testers" + ...
correcting public app center testers group
correcting public app center testers group
0543f0683cd67c57a0c815875529c67f516b3feb
--- core/__tests__/__mocks__/@walmart/allspark-foundation/Translation.js @@ -1,14 +1,15 @@ module.exports = { - ...jest.requireActual('@walmart/allspark-foundation/Translation'), - AllsparkTranslationClient: { - t: jest.fn((key) => key), - language: 'language', - on: jest.fn(), - getL...
Fixed guest explore navigation
Fixed guest explore navigation
26f7b997802d7cb9697771327a0239c541ca89a4
--- .looper.multibranch.yml @@ -367,7 +367,7 @@ flows: - (set version code) bundle exec fastlane set_ios build_number:${BUILD_NUMBER} - call: ios-process else: - - (set version code) bundle exec fastlane set_android build_number:${BUILD_NUMBER} + - (set version code) bun...
adding version code for android fastlane
adding version code for android fastlane
9039f57516cfedf2b10eacadf58258539a6d2e1a
--- src/myteam-hub/components/MyTeamAssociateExpHub.tsx @@ -13,6 +13,7 @@ * - MyTeam-specific container ID for widget management * - Error handling and fallback states * - Telemetry integration for user experience tracking + * - Hub configuration without prop drilling */ import React from 'react'; @@ -25,6 +...
feat(ui): update associate exp hub layout config
feat(ui): update associate exp hub layout config
2dd0d5bd153d5b450428afbc229ab8d7fa735d3d
--- package.json @@ -86,7 +86,7 @@ "@walmart/ask-sam-mini-app": "1.28.21", "@walmart/associate-listening-mini-app": "1.2.14", "@walmart/attendance-mini-app": "3.155.0", - "@walmart/avp-feature-app": "0.16.5", + "@walmart/avp-feature-app": "0.16.8", "@walmart/avp-shared-library": "0.10.7", ...
feat(ui): OPIF-204722 TPB Drop 29 (#4084)
feat(ui): OPIF-204722 TPB Drop 29 (#4084) * bumped avp * bumped avp * bumped avp --------- Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com>
44391d2fc9827cb873f4cd9bc7fcaf5cfa738f24
--- src/core/Navigation.tsx @@ -29,7 +29,7 @@ const ContentPlaceholder = (name: string) => () => ( const MainTabs = createBottomTabNavigator(); const MainTabsNav = () => ( - <MainTabs.Navigator tabBar={TabBar}> + <MainTabs.Navigator tabBar={(props) => <TabBar {...props} />}> <MainTabs.Screen name='hom...
add bottom spacing on tab bar using safe area
add bottom spacing on tab bar using safe area
99ca086bf15c3e9392ac89514adba99f0217fd12
--- ios/BuildSupport/AppStore.keychain-db Binary files a/ios/BuildSupport/AppStore.keychain-db and b/ios/BuildSupport/AppStore.keychain-db differ --- ios/BuildSupport/Squiggly_AppStore_Provision.mobileprovision Binary files a/ios/BuildSupport/Squiggly_AppStore_Provision.mobileprovision and b/ios/BuildSupport/Squiggly...
Revert keychain to main branch
Revert keychain to main branch
7648f2895ccf00e46b5167d449ab341a7fb99fbf
--- package.json @@ -147,8 +147,8 @@ "@types/seamless-immutable": "^7.1.16", "@types/semver": "^7.3.4", "@types/uuid": "^8.3.0", - "@walmart/allspark-foundation": "6.27.3", - "@walmart/allspark-foundation-hub": "1.2.5", + "@walmart/allspark-foundation": "6.27.4", + "@walmart/allspark-foundati...
chore: bump foundation for peer dependency fix. remove uneeded local package dev dependencies
chore: bump foundation for peer dependency fix. remove uneeded local package dev dependencies
b58754d653e9fcf4ce380a8271ee55283d654202
--- ios/Podfile.lock @@ -2044,4 +2044,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 5e9af5bffc9ed6ee9db34b0f1573f68bd919bf97 -COCOAPODS: 1.12.0 +COCOAPODS: 1.12.1 --- package-lock.json @@ -63,7 +63,7 @@ "@walmart/iteminfo-mini-app": "7.4.0", "@walmart/manager-approvals-miniapp": "0.2.4", "@wa...
did pod install for metrics 0.15.5 ext imgs
did pod install for metrics 0.15.5 ext imgs
564cc8112f3f88f5d9720857fb7a71b1364b3613
--- jest.config.js @@ -5,10 +5,10 @@ module.exports = { collectCoverageFrom: ['<rootDir>/src/**/*.{js,jsx,ts,tsx}'], coverageThreshold: { global: { - statements: 16.44, - branches: 7.4, - functions: 6.69, - lines: 17.24, + statements: 24.3, + branches: 7.8, + functions: 9.6...
updating coverage numbers
updating coverage numbers
61f31892259ce1678549bcb09a0c0556198c4f50
--- packages/allspark-utils/__tests__/cloneObjectTest.ts @@ -1,7 +1,7 @@ import { cloneObject } from '../src/cloneObject'; -describe('getCorrelationId', () => { - it('get correct correlation id', () => { +describe('cloneObject', () => { + it('cloneObject', () => { const object = { countryCode: 'US', ...
chore: rename test
chore: rename test
47bc5dc3b6aa2a34602f242a54adc4fd81127548
--- package-lock.json @@ -39,7 +39,7 @@ "@walmart/attendance-mini-app": "0.86.0", "@walmart/config-components": "4.1.0-rc.4", "@walmart/core-services": "~2.0.19", - "@walmart/core-services-allspark": "~2.10.7", + "@walmart/core-services-allspark": "~2.10.8", "@walmart/c...
fix: bumping core services package for graphql logging enhancements
fix: bumping core services package for graphql logging enhancements
facf4bbc15be2af86fbfcf2bc116d57efa38f20a
--- package-lock.json @@ -69,7 +69,7 @@ "@walmart/onewalmart-miniapp": "1.0.16", "@walmart/pay-stub-miniapp": "0.10.15", "@walmart/payrollsolution_miniapp": "0.131.15", - "@walmart/price-changes-mini-app": "1.10.0", + "@walmart/price-changes-mini-app": "1.10.1", "@walma...
chore: Bump price changes mini app
chore: Bump price changes mini app
1e6da7d8b28fa0f8954235e306e5d9e17cd9abdd
--- __tests__/core/analyticsInitTest.ts @@ -1,4 +1,4 @@ -import {all, takeLatest, call} from 'redux-saga/effects'; +import {all, takeLatest, call, select} from 'redux-saga/effects'; jest.mock('@walmart/redux-store', () => ({ addSagas: jest.fn(), @@ -35,9 +35,10 @@ import { onUserChanged, onNetworkStateChang...
Fix with config and analytics init. Increment ui-components (#244)
Fix with config and analytics init. Increment ui-components (#244) Co-authored-by: rlane1 <rlane1@walmart.com>
02a0f8984503c3c8bd5296c8fbdaa041d87d10cf
--- lerna.json @@ -1,5 +1,5 @@ { - "version": "5.0.0-beta.15", + "version": "5.0.0-beta.16", "npmClient": "npm", "changelogPreset": "angular", "command": { @@ -12,7 +12,10 @@ }, "version": { "message": "chore(version): updating package version", - "allowBranch": ["main", "develop"], + ...
chore: enable develop to version packages. bump beta release
chore: enable develop to version packages. bump beta release
1d4df09ef51128972f57ba5a9838ae7388136f74
--- package.json @@ -136,7 +136,7 @@ "@walmart/react-native-store-map": "0.3.7", "@walmart/react-native-sumo-sdk": "2.7.0", "@walmart/react-native-webex-sdk": "0.2.11", - "@walmart/receipt-check-miniapp": "1.22.9", + "@walmart/receipt-check-miniapp": "1.22.11", "@walmart/redux-store": "6.1.4",...
update
update
bdf0c5297a04ca1dab350f6d4ed761ed2bee1ec2
--- .looper-pr.yml @@ -32,4 +32,3 @@ envs: AUTHOR: temp SLACK_CHANNEL: 'smdv-miniapp' - --- package.json @@ -96,7 +96,7 @@ "@walmart/react-native-sumo-sdk": "2.8.0", "@walmart/redux-store": "6.3.29", "@walmart/ui-components": "1.15.1", - "@walmart/wmconnect-mini-app": "2.38.0", + ...
feat(ui): updating wmconnect version
feat(ui): updating wmconnect version
7163cb071ba3002ae313f31368917db7da2b216b
--- core/src/manifest.ts @@ -76,6 +76,7 @@ export const getAssociateFeatures = (): AllsparkFeatureModule[] => { require('@walmart/mod-flex-mini-app').default, require('@walmart/shelfavailability-mini-app').default, require('@walmart/rfid-scan-mini-app').default, + require('@walmart/returns-min...
chore(ui): updated package json
chore(ui): updated package json chore(ui): updated package json
965c8f88b27bd8fda4620f5b0269348f0d768c84
--- __tests__/core/analyticsInitTest.ts @@ -47,6 +47,9 @@ import { } from '../../src/redux'; import {SESSION_ID} from '../../src/services/Session'; import {encryptUserId} from '../../src/services/MaskUserId'; +import {getDeviceType} from '../../src/redux/SharedSelectors'; + +const deviceType = 'junk'; describe('o...
adding device type to analytics and logger
adding device type to analytics and logger
31da133fe0cda7dea31e472374399078aa447e73
--- package-lock.json @@ -54,7 +54,7 @@ "@walmart/checkout-mini-app": "3.9.310", "@walmart/compass-sdk-rn": "5.19.3", "@walmart/config-components": "4.3.2", - "@walmart/copilot-mini-app": "3.91.0", + "@walmart/copilot-mini-app": "3.92.4", "@walmart/core-services": "6.0....
chore: bump copilot@3.92.4
chore: bump copilot@3.92.4
69228c6e88701be6d5d4642382c6b6efb917368f
--- src/screens/RosterDetailScreen/SupplyChainRosterDetailScreen/useSupplyChainRosterDetails.ts @@ -1,14 +1,14 @@ -import {useCallback, useState} from 'react'; -import {RosterDetailScreenProps} from '../types'; +import { useCallback, useState } from "react"; +import { RosterDetailScreenProps } from "../types"; import ...
feat(ui): shifts logic update
feat(ui): shifts logic update
6cc95b89ab20e6693717ee6a41ef13ce9a4e63c9
--- __tests__/navigation/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.snap @@ -88,6 +88,10 @@ Array [ } } /> + <Screen + component="TimeClockScreen" + name="timeClock" + /> <Group screenOptions={ Object { --- src/navigation/AssociateHallwayNav/MainSt...
Moving timeclock screen up to main stack for use from side menu
Moving timeclock screen up to main stack for use from side menu
ec768fa2c1d50518a5bdc876ad0e8e21cd945d71
--- packages/allspark-foundation-hub/src/Store/Modules/Hub/HubDashboard.tsx @@ -35,7 +35,6 @@ import { useFocusEffect, useNavigation, useRoute, - useScrollToTop, } from '@react-navigation/native'; import { TeamOnboardingScreen, useOnboardingContext } from '../Onboarding'; import { useAllsparkTranslation } ...
horizontal scroll reset
horizontal scroll reset
beea014dbc206755f6c1df57aa2b5e4a4d317f2b
--- src/translations/es-MX.ts @@ -3,10 +3,10 @@ export const esMX = { languageName: 'Español', }, userHeader: { - onlinePresence: 'Online', - offlinePresence: 'Offline', + onlinePresence: 'En línea', //TODO: needs Official Translation, Used google translate + offlinePresence: 'Desconectado', //TO...
updated spanish translations
updated spanish translations
ddbc10daf940a9f8529087b4b858e3029c02a188
--- .github/pull_request_template_check.yml @@ -56,7 +56,7 @@ jobs: } } - // Check for screenshots and recordings + // Check for screenshots and recordings are added if (!body.includes("### Screenshots") || !body.split("### Screens...
feat(ui): updating pr template
feat(ui): updating pr template
14bb941fa0679b5ed59be9789ba243d8f4f59748
--- ios/Podfile.lock @@ -356,7 +356,7 @@ PODS: - React - react-native-webview (10.10.0): - React-Core - - react-native-wm-barcode (2.25.0): + - react-native-wm-barcode (2.29.0): - React - react-native-wm-voice-text (0.4.1): - React @@ -814,7 +814,7 @@ SPEC CHECKSUMS: react-native-video: 8...
added Podfile.lock
added Podfile.lock
e9903944878eb15156da0f6669b2f249cb5ab8f1
--- package.json @@ -145,7 +145,7 @@ "@walmart/shelfavailability-mini-app": "1.5.23", "@walmart/store-feature-orders": "1.26.7", "@walmart/taskit-mini-app": "2.81.15", - "@walmart/time-clock-mini-app": "2.364.0", + "@walmart/time-clock-mini-app": "2.367.0", "@walmart/topstock-mini-app": "patch...
Update TCMA to 2.367.0
Update TCMA to 2.367.0
eaba6e0353a118eca7c1ab1e0148a3f1f61360e9
--- package-lock.json @@ -48,14 +48,14 @@ "@walmart/exception-mini-app": "1.0.16", "@walmart/facilities-management-miniapp": "0.5.22", "@walmart/feedback-all-spark-miniapp": "0.9.10", - "@walmart/financial-wellbeing-feature-app": "1.1.2", + "@walmart/financial-wellbeing-feature-...
Update package-lock.json
Update package-lock.json
0af79f35de8116a61a02663ca9d95d8df0102ac8
--- core/src/manifest.ts @@ -72,6 +72,7 @@ export const getAssociateFeatures = (): AllsparkFeatureModule[] => { require('@walmart/manager-approvals-miniapp').default, require('@walmart/translator-mini-app').default, require('@walmart/checkout-mini-app').CheckoutMiniApp, + require('@walmart/mod...
Modflex - Allspark foundation migration
Modflex - Allspark foundation migration
0300188574f5ea47090bcf6def03a608a363237c
--- package-lock.json @@ -3372,9 +3372,9 @@ "integrity": "sha512-jplu8SFzqVj1xWNlxMrPmR3oelBdyNBeQHJOr5YM7p7yqAWBiYO2jt9HyUkZCzRkEhrjjDufk9J5K9OJC1GhKA==" }, "@walmart/iteminfo-mini-app": { - "version": "1.0.19", - "resolved": "https://npme.walmart.com/@walmart/iteminfo-mini-app/-/iteminfo-mi...
Item Info version with new error screens
Item Info version with new error screens
20dfe99b7d36ce3ba3383ade881b4fda2de2c972
--- package-lock.json @@ -42,8 +42,8 @@ "@walmart/ask-sam-chat-components": "^0.2.7", "@walmart/ask-sam-mini-app": "1.18.5", "@walmart/attendance-mini-app": "3.10.0", - "@walmart/avp-feature-app": "0.1.3", - "@walmart/avp-shared-library": "0.1.3", + "@walmart/avp-feature-...
bumped avp version to 0.1.5
bumped avp version to 0.1.5
799e10594c767d2706c4f91a3f3620787cdb1d63
--- src/screens/SearchScreen.tsx @@ -73,7 +73,6 @@ type SearchScreenProps = { route: RouteProp<TextingNavParamsMap, 'myTeam.searchScreen'>; }; -//TODO: Refactor Search Screen and move into myteam app as shared responsibility with wmConnect. Have discussion about this. export const SearchScreen: React.FC<SearchSc...
cleaning todos
cleaning todos
8a4de7d13a224621f5364097c892bfcc8333569c
--- package-lock.json @@ -84,7 +84,7 @@ "@walmart/schedule-mini-app": "0.55.0", "@walmart/shelfavailability-mini-app": "1.5.17", "@walmart/taskit-mini-app": "2.47.9", - "@walmart/texting-mini-app": "2.1.2", + "@walmart/texting-mini-app": "2.1.3", "@walmart/time-clock-mi...
Update texting mini app version
Update texting mini app version
b52838ba4f4d5de3060ba6b41320ff0f01f944fc
--- packages/allspark-foundation/src/Clock/withClockGuard.tsx @@ -32,6 +32,11 @@ const styles = StyleSheet.create({ }, }); +/** + * The clock guard error message displayed when a feature is disabled. + * A container can modify the UX by customizing the Image and ErrorMessage components on the component context. +...
docs: add comments to guard components to add context
docs: add comments to guard components to add context
34aa1d4f3bec33ed15ef20d7054d535553a52b25
--- packages/me-at-walmart-container/src/services/user/index.ts @@ -39,9 +39,10 @@ export const MeAtWalmartUserService = { let {userId, siteId, domain} = config; const env = await AllsparkEnvironment.getDeferred(); - if (domain === UserDomain.store && !userId.includes('.')) { - userId = `${userId}.s...
removing auto adding site to impersonation
removing auto adding site to impersonation
4719e5483bd21fd165067ea5da8f9db2fa8b88b5
--- package.json @@ -13,6 +13,7 @@ "ios:prod": "npm run env:prod && react-native run-ios", "start": "react-native start", "coverage": "jest --coverage", + "jetifier": "jetifier", "test": "jest", "lint": "eslint ./src ./__tests__ --ext .js,.jsx,.ts,.tsx" },
added jetifier in package.json
added jetifier in package.json
60abf588168e69bd905520037b4da4eedaa47957
--- packages/allspark-foundation-hub/package.json @@ -1,6 +1,6 @@ { "name": "@walmart/allspark-foundation-hub", - "version": "1.0.1-beta.2", + "version": "1.0.1-beta.3", "description": "", "main": "Core/index.js", "types": "Core/index.d.ts",
Update checkbox on team selection screen
Update checkbox on team selection screen
0128213012f0a0fde097f078bf2667587f0ebb44
--- packages/expo-config-plugins/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.2](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/expo-config-plugins@0...
chore(version): updating package version
chore(version): updating package version - @walmart/expo-config-plugins@0.11.2
7d53bd665da84bcd0d3c53d1959278ccd0fd7dee
--- android/app/build.gradle @@ -144,8 +144,8 @@ android { applicationId "com.walmart.stores.allspark.beta" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 861 - versionName "1.4.3" + versionCode 865 + ver...
Resolve merge conflict.
Resolve merge conflict.
ac4a20bb52f5824e19b6523043a6250344b29398
--- package-lock.json @@ -35,7 +35,7 @@ "@walmart/allspark-neon-core": "0.1.31", "@walmart/amp-mini-app": "1.0.11", "@walmart/ask-sam-chat-components": "^0.2.7", - "@walmart/ask-sam-mini-app": "1.3.61", + "@walmart/ask-sam-mini-app": "1.3.62", "@walmart/attendance-mini-...
Bumping the version aligning to feature/drop10
Bumping the version aligning to feature/drop10
be564a00dfad60981191cd2bdd91a5867dbc81ee
--- package-lock.json @@ -3154,9 +3154,9 @@ } }, "@walmart/push-to-talk-mini-app": { - "version": "0.5.11", - "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-0.5.11.tgz", - "integrity": "sha512-/Koqd5NXYRxRp6uI+Kq6s/R6B6WJcbTxOmmje1yIhE8UZbhXx...
PTT Version bump
PTT Version bump
6504e8897531308847f0e779d4d41fa307aa0485
--- packages/core-services-allspark/package.json @@ -19,7 +19,7 @@ "author": "", "license": "ISC", "devDependencies": { - "@walmart/allspark-foundation": "patch:@walmart/allspark-foundation@npm%3A6.20.2#~/.yarn/patches/@walmart-allspark-foundation-npm-6.20.2-63c5884a2a.patch", + "@walmart/allspark-founda...
chore: code cleanup
chore: code cleanup
3421d780a9465a65127262c6d44a43281974bad2
--- README.md @@ -49,6 +49,8 @@ You will also need to add your SSH key to Walmart github using [these](https://d ## Running on Android -For faster local consecutive builds, add below line in your `.zshrc` or `.bash_profile` - -`export REACT_NATIVE_DOWNLOADS_DIR=$HOME/.react-native-downloads` +For faster local con...
Updated readme for Android local build
Updated readme for Android local build
c6595e893098b1ba1bbd7b699d00c1b731791156
--- package-lock.json @@ -3384,9 +3384,9 @@ "integrity": "sha512-DMXzHrlFBvd5qOHxju7irJ+4UkclgpwJVlEKzPqmL4oQPYXkjCydvbJR0O5FmZtDDyBrKxKtofD2vD4nyBeHPA==" }, "@walmart/inbox-mini-app": { - "version": "0.14.0", - "resolved": "https://npme.walmart.com/@walmart/inbox-mini-app/-/inbox-mini-app-0....
SSMP-2424
SSMP-2424
775e0ec5606c2c13ef188ec2320b8f5c0bccf21a
--- packages/allspark-foundation/src/Telemetry/types.ts @@ -46,6 +46,16 @@ export type TelemetryConfig = { * Additional fields to include in the telemetry data. */ fields?: Record<string, any>; + /** + * Prefix used with telemetry events, defaults to feature id + * prefix.some_event + */ + prefix?: s...
feat: add prefix related options to the telemetry config type
feat: add prefix related options to the telemetry config type
0d926be17f39ef0b36752b9ba9bb6fd722b9d44d
--- src/navigation/index.tsx @@ -8,7 +8,6 @@ import {TabsScreen} from '../screens/TabsScreen'; import {NewMessageScreen} from '../screens/NewMessageScreen'; import {ViewTeamScreen} from '../screens/ViewTeamScreen'; import { - SearchHeader, SearchHeaderRight, SearchScreen, } from '../screens/SearchScreen'; @@...
updating navigation structure
updating navigation structure
79188e6ae8420a0a1db3cffdc1bf3531daf011d2
--- package-lock.json @@ -88,7 +88,7 @@ "@walmart/time-clock-mini-app": "2.175.1", "@walmart/topstock-mini-app": "1.2.3", "@walmart/ui-components": "1.15.1", - "@walmart/welcomeme-mini-app": "0.84.2-739-bacf009", + "@walmart/welcomeme-mini-app": "0.84.3", "@walmart/wfm-...
chore: welcomeme version bump
chore: welcomeme version bump
25657f1679ea71cbb8b3dd5c1c07b6041c3a670a
--- src/navigation/AssociateHallwayNav/MainStackNav.tsx @@ -136,6 +136,7 @@ export const MainStackNav = () => { component={TermsOfUse} options={{ title: translate('navigation.terms_of_use'), + headerBackImage: renderHeaderCloseImage, }} /> ...
adding close image to terms of use nav settings
adding close image to terms of use nav settings
00a953b6550507a7d26a599600e16b15d6db480a
--- scripts/mini-app-scan/lint-changed-walmart-libs.ts @@ -38,8 +38,13 @@ console.log(`Comparing package.json to ${COMPARE_BRANCH}...`); // Try to fetch the specific branch ref, fallback to fetch all if needed try { execSync(`git fetch origin ${COMPARE_BRANCH}:${COMPARE_BRANCH}`, {stdio: 'ignore'}); -} catch { - ...
Update scripts/mini-app-scan/lint-changed-walmart-libs.ts
Update scripts/mini-app-scan/lint-changed-walmart-libs.ts Co-authored-by: qodo-merge[bot] <98856+qodo-merge[bot]@users.noreply.gecgithub01.walmart.com>
2933016d2b27ebd99de2b71b039263a79643397d
--- __tests__/screens/RosterScreenTest.tsx @@ -2,7 +2,9 @@ import React from 'react'; describe('RosterScreen', () => { - it('should render the teams list', () => {}); + it('should render the teams list', () => { + + }); it('should render the associate list', () => {}); it('should render the weekly schedule...
rename teamChatCard to TeamList
rename teamChatCard to TeamList
b98a8ed1be24b05a4ee140eb465eb4d06904a7cf
--- package-lock.json @@ -103,7 +103,7 @@ "@walmart/store-feature-orders": "1.26.5", "@walmart/taskit-mini-app": "2.64.8", "@walmart/time-clock-mini-app": "2.338.1", - "@walmart/topstock-mini-app": "1.7.1", + "@walmart/topstock-mini-app": "1.8.5", "@walmart/ui-component...
feature(release): updated topstock version to 1.8.5
feature(release): updated topstock version to 1.8.5
d8764a34b90ce634f420e7fd5ce9d4ec14270df8
--- package-lock.json @@ -5259,9 +5259,9 @@ "integrity": "sha512-Ew95y0sb7r6aqL2AtanmTDTscP7cyRcxvOr0VV4q22Cohe7Dkqmk3JoRqqmV+JLNep1a0K4yI2E+RtSMZ53vZA==" }, "@walmart/feedback-all-spark-miniapp": { - "version": "0.8.0", - "resolved": "https://npme.walmart.com/@walmart/feedback-all-spark-mini...
feedbackmini app version bump
feedbackmini app version bump
f12061173ab4fc6ac3cd2a4eff2980ba7f3b729e
--- packages/core-services-allspark/src/logger/sagas.ts @@ -75,12 +75,13 @@ export function* onUserChanged(this: LoggerSagaScope) { this.logger.setUserInfo({ country: user.countryCode || 'US', + state: String(user.state), employeeType: user.employeeType || '', homeSite: String(user.home...
fix: add state to user info on logger
fix: add state to user info on logger
d82d086bd7bfadc0ea52ed467457c42ef583b0ed
--- targets/US/package.json @@ -143,7 +143,7 @@ "@walmart/roster-mini-app": "2.8.2", "@walmart/schedule-mini-app": "0.118.0", "@walmart/shelfavailability-mini-app": "1.5.33", - "@walmart/sidekick-mini-app": "4.86.3", + "@walmart/sidekick-mini-app": "4.83.5", "@walmart/store-feature-orders": "1...
fix: updated sidekick version for bug fix
fix: updated sidekick version for bug fix
272ea93f9cf10996b83c4083632c56c43fc8cdda
--- package-lock.json @@ -63,7 +63,7 @@ "@walmart/iteminfo-mini-app": "7.4.0", "@walmart/manager-approvals-miniapp": "0.2.4", "@walmart/me-field-mini-app": "13.0.3", - "@walmart/metrics-mini-app": "0.13.11", + "@walmart/metrics-mini-app": "0.13.12", "@walmart/mod-flex-m...
metrics version bump
metrics version bump
faa8ab59dd0dfde64dd84f01f02ae39f43618c2f
--- src/components/ActionButton/index.tsx @@ -34,7 +34,7 @@ export const ActionButton = ({ }); return ( - <TouchableOpacity disabled={disabled} {...buttonProps}> + <TouchableOpacity {...buttonProps}> <Animated.View style={[styles.button]}> {loading ? ( <ActivityIndicator size='s...
disabledStyle removed from ActionButton/index
disabledStyle removed from ActionButton/index
6edc6cb27ca27c05119a8616ee74f3c92b430148
--- package.json @@ -95,9 +95,9 @@ "@walmart/react-native-shared-navigation": "6.1.4", "@walmart/react-native-sumo-sdk": "2.8.0", "@walmart/redux-store": "6.3.29", - "@walmart/roster-mini-app": "2.39.0", + "@walmart/roster-mini-app": "2.41.0", "@walmart/ui-components": "1.15.1", - "@walmart...
feat(ui): version update
feat(ui): version update
17f4b6c1887be11a7dbc41e22d6b62d19d7b16e7
--- .looper.multibranch.yml @@ -47,6 +47,7 @@ cache: envs: global: variables: + CI: "true" LOOPER_NODES: "((osx||stable_osx)&&!MAC-LAB-MINI29&&!MAC-LAB-MINI39&&!MAC-LAB-MINI32&&!MAC-LAB-MINI22)" GITHUB_TOKEN: "%{credentials.secret('GITHUB_TOKEN')}" @@ -485,10 +486,6 @@ flows: - dir(an...
hopefully disabling watchman for metro bundler
hopefully disabling watchman for metro bundler
038df24397c235674d95395b10301a7a66e031d3
--- package.json @@ -159,7 +159,7 @@ "@walmart/walmart-fiscal-week": "^0.3.6", "@walmart/welcomeme-mini-app": "1.0.11", "@walmart/wfm-ui": "2.4.0", - "@walmart/wm-plus-mini-app": "1.5.2", + "@walmart/wm-plus-mini-app": "1.5.3", "@walmart/wmconnect-mini-app": "2.24.0", "axios": "~1.6.0", ...
feat(profile): CEWMPLUS-115039 update wmplus miniapp to 1.5.3 (#4126)
feat(profile): CEWMPLUS-115039 update wmplus miniapp to 1.5.3 (#4126)
9c4d7317f3ea71365b952f131210c69d4229e82d
--- .looper-pr.yml @@ -13,11 +13,6 @@ flows: - (name Yarn Install) yarn install - (name Test Coverage) yarn run coverage - commit-convention-checker: - - echo 'conventional commit disabled' - semantic-dry-run: - - echo 'semantic dryrun disabled' - envs: global: variables:
fix: SMDV-9999 update looper
fix: SMDV-9999 update looper
393ba89ff3ac7d63d3782f5b45c0cea237d2914b
--- src/managerExperience/components/ShiftSwitcherContainer/ShiftSwitcherContainer.tsx @@ -28,7 +28,7 @@ export const ShiftSwitcherContainer = ({ {!isPrimaryTeam && ( <Chip id='switcher' testID='shiftChip' UNSAFE_style={styles.shiftChip}> {t('rosterScreen.shiftChip.shift')} - {t('ros...
fix: adding separator manually
fix: adding separator manually
c707ad01f0bd54af62f74a4edf3c587b764fd43e
--- src/auth/ErrorScreen.tsx @@ -205,7 +205,7 @@ export const ErrorScreen: FC<any> = (props) => { /> </View> )} - {missingFields && !formDirty && ( + {missingFields && formDirty && ( <View style={styles.requiredErrorContainer}> ...
fix show error msg
fix show error msg